forked from stefanidisgeorge/watt_metter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchartyear.php
48 lines (45 loc) · 1.25 KB
/
chartyear.php
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
<?php
// Start MySQL Connection
include('dbconnect.php');
?>
<script>
$(function () {
$('#container3').highcharts({
title: {
text: 'Daily Watt Consumption',
x: -20 //center
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
yAxis: {
title: {
text: 'Consumption (Watt)'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: ' Watt'
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
borderWidth: 0
},
series: [{
showInLegend: false,
name: 'Consumption',
data: [ 23.3, 18.3, 13.9, 9.6, 7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9]
}]
});
});
</script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container3" style="min-width: 310px; height: 400px; margin: 0 auto"></div>