SLA - Data 1
by Mabuti
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
$('#container').highcharts({
title: {
text: 'Ticket Status - Group Wise'
},
xAxis: {
categories: ['BLH Help Desk', 'BLH MPS', 'BLH Network', 'BLH Support','BLH Server']
},
series: [{
name: 'Assigned',
data: [0,9,0,9,2]
}, {
name: 'Closed',
data: [176,19,7,40,1]
}, {
name: 'In Progress',
data: [3,12,0,16,2]
}, {
name: 'Pending',
data: [0,8,0,0,0]
}, {
name: 'Total Tickets',
data: [179,48,7,65,5],
marker: {
lineWidth: 2,
lineColor: Highcharts.getOptions().colors[3],
fillColor: 'white'
}
}]
});
});