Highcharts Demo
author(s): Torstein Hønsi
by easter bunny
HTML
<script src="https://code.highcharts.com/highcharts.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" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'line'
},
title: {
text: 'Entry Time Graph : February 2020'
},
subtitle: {
text: 'All the time in this graph are equal or after 10: 00, 0 input can either measn absent or arrived just on time'
},
xAxis: {
categories: [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]
},
yAxis: {
title: {
text: 'Entry Time'
}
},
plotOptions: {
line: {
dataLabels: {
enabled: true
},
enableMouseTracking: false
}
},
series: [{
name: '2018',
data: [0,16,39,28,18,20,0,16,23,24,18,34,25,0,0,20,28,29,24,0,24,25,27,28,38,26,19,0,14]
}]
});