I'm currently working on incorporating stack labels into my chart using Highcharts.
Here is the link to my code snippet: http://jsfiddle.net/Hjdnw/970/
The documentation from https://github.com/pablojim/highcharts-ng states that all options should be placed within an 'options' object.
$scope.chartConfig = {
options: {
chart: {
type: 'bar'
},
yAxis: {
stackLabels: {
style: {
color: 'black'
},
enabled: true
}
},
},
series: [{
data: [10, 15, 12, 8, 7]
}],
title: {
text: 'Hello'
},
loading: false
}
I seem to be encountering a problem with this setup. Can anyone help me figure out what I am doing wrong?