Dashboard-AggregatedDL
author(s):
Torstein Hønsi
by Swapnil Navalakha
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/series-label.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<div id="container"></div>
CSS
#container {
min-width: 310px;
max-width: 800px;
height: 400px;
margin: 0 auto
}
JavaScript
Highcharts.chart('container', {
title: {
text: null
},
xAxis: {
type: 'datetime',
title: {
text: 'Time(hh:mm)',
style: {
color: 'rgb(85, 132, 179)'
}
}
},
yAxis: {
title: {
text: 'Throughput (Mbps)',
style: {
color: 'rgb(85, 132, 179)'
}
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
series: [{
name: 'Prev Day',
unit: 'Mbps',
data: [
[
1568275125361,
2.831
],
[
1568275305361,
0
],
[
1568275485361,
0
],
[
1568275665361,
2.791
],
[
1568275845361,
0
],
[
1568276025361,
2.852
],
[
1568276205361,
0
],
[
1568276385361,
2.619
],
[
1568276565361,
2.903
]]
}, {
name: 'Today',
data: [
[
1568275125361,
3.831
],
[
1568275305361,
1
],
[
1568275485361,
0
],
[
1568275665361,
2.791
],
[
1568275845361,
0
],
[
1568276025361,
2.852
],
[
1568276205361,
0
],
[
1568276385361,
2.619
],
[
1568276565361,
2.903
]]
}
]
});