-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent-trends.html
59 lines (59 loc) · 1.65 KB
/
event-trends.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
<html>
<head>
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/highcharts.js"></script>
<script src="js/modules/exporting.js"></script>
<body>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div></head>
<script>
$(function () {
$('#container').highcharts({
title: {
text: 'Event Trends',
x: -20 //center
},
subtitle: {
text: 'Source: www.nation.co.ke',
x: -20
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
yAxis: {
title: {
text: 'No. of Events'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: ''
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
borderWidth: 0
},
series: [{
name: 'Accidents',
data: [6.0, 7.0, 9.0, 13.0, 12.0, 6.0, 7.0, 8.0, 9.0, 8.0, 10.0, 15.0]
}, {
name: 'Floods',
data: [2.0, 1.0, 7.0, 8.0, 5.0, 0.0, 0.0, 0.0, 2.0, 5.0, 2.0, 6.0]
}, {
name: 'Robberies',
data: [6.0, 7.0, 5.0, 10.0, 4.0, 5.0, 5.0, 9.0, 7.0, 5.0, 3.0, 11.0]
}, {
name: 'Corruption',
data: [2.0, 3.0, 2.0, 4.0, 7.0, 6.0, 4.0, 7.0, 8.0, 10.0, 7.0, 6.0]
}]
});
});
</script>
</body>
</html>