-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchartMonth.html
147 lines (143 loc) · 6.33 KB
/
chartMonth.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.png">
<link type="text/css" rel="stylesheet" href="Syncfusion/content/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="dist/js/jqueryui/jquery-ui.min.css">
<link type="text/css" rel="stylesheet" href="dist/js/jqueryui/jquery-ui.structure.min.css">
<link type="text/css" rel="stylesheet" href="dist/js/jqueryui/jquery-ui.theme.css">
<link type="text/css" rel="stylesheet" href="Syncfusion/content/default.css"/>
<link type="text/css" rel="stylesheet" href="Syncfusion/content/default-responsive.css"/>
<link type="text/css" rel="stylesheet" href="dist/css/jquery.dataTables.min.css"/>
<link type="text/css" rel="stylesheet" href="dist/css/buttons.dataTables.min.css"/>
<link type="text/css" rel="stylesheet" href="dist/css/chart.min.css"/>
</head>
<body>
<h3></h3>
<label id="lieg"></label>
<button id="diagSpeichern" style="float:right;margin-bottom:10px;margin-right:25px;">Diagramm speichern</button>
<div id="bemerkungen">
<h4>Bemerkungen</h4>
<div id="bemList" style="padding-left: 20px;">
</div>
</div>
<div class="content-container-fluid">
<div class="row">
<div class="cols-sample-area">
<div id="container"></div>
</div>
</div>
</div>
<div id="Tooltip" style="display: none;">
<div id="icon">
<div id="eficon"></div>
</div>
<div id="value">
<div>
<label id="efpercentage"> #point.y#</label>
<label id="ef">Efficiency</label>
</div>
</div>
</div>
<div id="table-chart-data-container_1">
<label style="font-size: 18px;">Summe-Monat: </label>
<label id="consumption-month_1" style="font-size: 18px;"></label>
<br>
<br>
<table id="tblChartData_1" class="stripe hover row-border compact dt-left custom">
<thead>
<tr>
<th>Messstelle</th>
<th>Datum</th>
<th>Wert[kWh]</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="table-chart-data-container_2">
<label style="font-size: 18px;">Summe-Monat: </label>
<label id="consumption-month_2" style="font-size: 18px;"></label>
<br>
<br>
<table id="tblChartData_2" class="stripe hover row-border compact dt-left custom">
<thead>
<tr>
<th>Messstelle</th>
<th>Datum</th>
<th>Wert[kWh]</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="table-chart-data-container_3">
<label style="font-size: 18px;">Summe-Monat: </label>
<label id="consumption-month_3" style="font-size: 18px;"></label>
<br>
<br>
<table id="tblChartData_3" class="stripe hover row-border compact dt-left custom">
<thead>
<tr>
<th>Messstelle</th>
<th>Datum</th>
<th>Wert[kWh]</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="notePopup" style="display:none;">
<input id="identNote" type="text" name="" placeholder="Name" readonly>
<br>
<input id="mstIDNote" type="text" name="" placeholder="Messstelle" readonly>
<input id="mstNote" type="text" name="" placeholder="Messstelle" readonly>
<br>
<textarea id="bemerkungNote" name="name" rows="5" placeholder="Bemerkung"></textarea>
<br>
<input id="colorNote" type="text" name="color" style="display: none;">
<br>
<input id="seriesNote" type="text" name="color" style="display: none;">
<br>
<button type="button" id="btnNoteOk">Ok</button>
<button type="button" id="btnNoteAbbr">Abbrechen</button>
</div>
<div id="savePopup" style="display:none;">
<input type="text" id="name" name="name" placeholder="Name" style="width: 90%;">
<br>
<br>
<textarea id="beschreibungSave" name="beschreibung" rows="3" cols="40" placeholder="Beschreibung" style="width: 90%;"></textarea>
<br>
<br>
<button type="button" id="btnSaveOk">Ok</button>
<button type="button" id="btnSaveAbbr">Abbrechen</button>
</div>
<script type="text/javascript" src="Syncfusion/scripts/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="dist/js/jqueryui/jquery-ui.min.js"></script>
<script type="text/javascript" src="dist/js/bluebird.min.js"></script>
<script type="text/javascript" src="dist/js/ej.web.all.min.js"></script>
<script type="text/javascript" src="Syncfusion/scripts/properties.js"></script>
<script type="text/javascript" src="dist/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="dist/js/dataTables.buttons.min.js"></script>
<script type="text/javascript" src="dist/js/buttons.flash.min.js"></script>
<script type="text/javascript" src="dist/js/jszip.min.js"></script>
<script type="text/javascript" src="dist/js/pdfmake.min.js"></script>
<script type="text/javascript" src="dist/js/vfs_fonts.min.js"></script>
<script type="text/javascript" src="dist/js/buttons.html5.min.js"></script>
<script type="text/javascript" src="dist/js/buttons.print.min.js"></script>
<script type="text/javascript" src="dist/js/math.min.js"></script>
<script type="text/javascript" src="src/js/fpCore.js"></script>
<script type="text/javascript" src="src/js/fpChart.js"></script>
<script type="text/javascript" src="dist/js/DataMachine.min.js"></script>
<script type="text/javascript" src="dist/js/DataTranslator.min.js"></script>
<script type="text/javascript" src="dist/js/objects.min.js"></script>
<script type="text/javascript" src="src/js/chartMonth.js" defer></script>
<link href="dist/css/pace-theme.min.css" rel="stylesheet"/>
<script src="dist/js/pace.min.js" type="text/javascript"></script>
</body>
</html>