bar datalabel issues
by kzoon
HTML
<div id="container" style="height: 400px"></div>
<script src="http://code.highcharts.com/highcharts.js"></script>
JavaScript
$(function() {
var chart = new Highcharts.Chart({
"chart": {
renderTo: 'container',
"type": "column",
"inverted": true
},
"plotOptions": {
"column": {
"dataLabels": {
"enabled": true,
"style": {
"color": "rgba(0,0,0,1)"
},
}
}
},
"xAxis": [{
"categories": ["Audio Div","Video Div","Accessory Div"
]
}
],
"series": [{
"data": [75960,52976,5066
]
}
]
});
});