Orders by Cutoff time: 24 hours
author(s): Koushlendra
by KSK Kushwah
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'column',
zoomType: 'x'
},
title: {
text: 'Orders by Cutoff time: 24 hours'
},
subtitle: {
text: document.ontouchstart === undefined ?
'Click and drag in the plot area to zoom in' : 'Pinch the chart to zoom in'
},
xAxis: {
categories: [
'Picking Gravity Inner Packs',
'Voice Pick Flam Convey',
'Picking iLPN Active',
'Verify Pick Cart',
'Pick from Tote',
'Pick from carton',
'Picking from Case Reserve',
'97 INT2 Case Reserve',
'Picking from Pallet Active'
]
},
yAxis: {
title: {
text: 'Number of orders'
}
},
plotOptions: {
column: {
dataLabels: {
enabled: true,
color: 'white'
}
}
},
legend: {
enabled: false
},
series: [{
name: 'Number of orders',
data: [
[1515997800000, 5],
[1515998700000, 12],
[1515999600000, 5],
[1516005000000, 20],
[1516023000000, 15],
[1516029300000, 25]
]
},
{
name: 'Number of lines',
data: [
[1515997800000, 0],
[1515998700000, 10],
[1515999600000, 3],
[1516005000000, 25],
[1516023000000, 10],
[1516029300000, 5]
]
}]
});