color contrast
by kzoon
HTML
<script src="http://code.highcharts.com/stock/highstock.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
type: 'column'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May']
},
plotOptions: {
series: {
allowPointSelect: true,
stacking: 'normal',
dataLabels: {
enabled: true
}
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, ]
}, {
data: [29.9, 71.5, 106.4, 129.2, 144.0,]
}, {
data: [59.9, 61.5, 106.4, 129.2, 144.0,]
}, {
data: [59.9, 61.5, 106.4, 129.2, 144.0,]
}, {
data: [59.9, 61.5, 106.4, 129.2, 144.0,]
}]
});
});