-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpopup.html
More file actions
66 lines (63 loc) · 2.68 KB
/
Copy pathpopup.html
File metadata and controls
66 lines (63 loc) · 2.68 KB
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
<html>
<head>
</head>
<body>
<script type="text/javascript" src="moment.js"></script>
<script type="text/javascript" src="Chart.js"></script>
<script type="text/javascript" src="popup.js"></script>
<table style="font-size: 10px">
<tr>
<td>
Timeline:
</td>
<td>
<input id="24" name="duration" type="radio" checked="true">24 Hours</input>
<input id="12" name="duration" type="radio">12 Hours</input>
<input id="6" name="duration" type="radio">6 Hours</input>
<input id="3" name="duration" type="radio">3 Hours</input>
<input id="1" name="duration" type="radio">1 Hour</input>
</td>
</tr>
<tr>
<td>
Chart:
</td>
<td>
<input id="line" name="chart" type="radio" checked="true">Line</input>
<input id="pie" name="chart" type="radio">Pie</input>
</td>
</tr>
</table>
<canvas id="jchart" style="height: 400px; width: 800px;"></canvas>
<!-- footer information -->
<div style="margin: 10px 75px 10px 75px; width: 80%">
<div id="left" style="float: left; width: 250px;">
<div>
<span style="font-weight: bold; font-size: 1.5em" id="average"></span> <span id="ave-units"></span><br/>AVERAGE
</div>
<div>
<span style="font-weight: bold; font-size: 1.5em" id="max"></span> <span id="max-units"></span><br/>HIGHEST READING
</div>
<div>
<span style="font-weight: bold; font-size: 1.5em" id="min"></span> <span id="min-units"></span><br/>LOWEST READING
</div>
</div>
<div id="right" style="float: right; width: 100px;">
<div>
<span style="font-weight: bold; font-size: 1.5em" id="below-range"></span> <br>BELOW RANGE
</div>
<div>
<span style="font-weight: bold; font-size: 1.5em" id="in-range"></span> <br/>IN RANGE
</div>
<div>
<span style="font-weight: bold; font-size: 1.5em" id="above-range"></span> <br/>ABOVE RANGE
</div>
</div>
<div id="center">
<div>
<span style="font-weight: bold; font-size: 1.5em" id="total"></span> <br/>READINGS
</div>
</div>
</div>
</body>
</html>