-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_charts.html
55 lines (47 loc) · 2.4 KB
/
user_charts.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
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Energy Website</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- add scripts -->
<script src="js/jquery-latest.js" type="text/javascript"></script>
<script src="js/highcharts.js" type="text/javascript"></script>
<script src="js/exporting.js" type="text/javascript"></script>
<script src="js/masterCSV.js" type="text/javascript"></script>
<script src="js/Demand.js" type="text/javascript"></script>
<script src="js/Price.js" type="text/javascript"></script>
<script src="js/cost.js" type="text/javascript"></script>
<!--script src="js/upload.js" type="text/javascript"></script-->
<script src="js/theme.js" type="text/javascript"></script>
</head>
<body>
<h1>DSM for the Home</h1>
<!-- Div tag contain the buttons to toggle the graphs -->
<div id="costbuttons" style="margin: 0px auto 0px auto; text-align: center;">
<button id="drawgraphs" type="button" name="drawgraphs" value="" class="button">Show Energy Profile</button>
</div>
<!-- Div tag where the graphs are rendered to -->
<div id="price" style="min-width: 400px; height: 400px; margin: 0 auto" class="graph"></div>
<div id="demanddiv" style="min-width: 400px; height: 400px; margin: 0 auto" class="graph"></div>
<div id="demandinfodiv" class="graph">
<div id="info">
<div id="totaldemand" class="infotext"></div>
<div id="drag" class="infotext"></div>
<div id="drop" class="infotext"></div>
<div id="newtotaldemand" class="infotext"></div>
<div id="totaldiff" class="infotext"></div>
</div>
<div id="differencediv" style="width:800px; height: 200px; margin-bottom:10px"></div>
</div>
<div id="cost" style="min-width: 400px; height: 400px; margin: 0 auto" class="graph"></div>
<div id="displaycost">
<div id="totalcost"></div>
<div id="newcost"></div>
<div id="savings"></div>
</div>
<script type="text/javascript">
console.log(localStorage.username);
</script>
</body>
</html>