Вы находитесь на странице: 1из 2

{

credits: {
enabled: false
},
colors: ['#6FAD2D', '#E8E800'],
chart: {
type: 'column',
spacingBottom: 100
},
title: {
text: null
},
xAxis: {
categories: [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0,
1, 2, 3, 4, 5, 6, 7, 8, 9]
},
yAxis: {
min: 0,
title: {
text: 'Total Successful '
},
stackLabels: {
enabled: true,
style: {
fontWeight: 'bold',
color: '#000'
}
}
},
legend: {
align: 'center',
x: -30,
verticalAlign: 'bottom',
y: 45,
floating: true,
backgroundColor: '#fff',
borderColor: '#CCC',
borderWidth: 1,
shadow: false
},
tooltip: {
formatter: function () {
return '<b>' + this.x + '</b><br/>' +
this.series.name + ': ' + this.y + '<br/>' +
'Total: ' + this.point.stackTotal;
}
},
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
color: '#fff',
style: {
fontSize: '8px'
}
}
}
},
series: [{

name:
data:
}, {
name:
data:
}]
}

'GTB',
[452, 515, 536, 587, 488, 513, 519, 474, 427]
'NIP',
[271, 344, 338, 284, 279, 310, 347, 301, 276]

Вам также может понравиться