I want to display the value on the growth in the stacked column but it hasn't worked yet, can anyone help me? ;(
I set it on the datalabel like it still doesn't work
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
formatter: function() {
return this.point.y;
},
style:{
fontSize: 8
}
}
},
line: {
dataLabels: {
enabled: true,
allowOverlap: true
}
}
}
You have used
spline
series type, so you need to enable data labels forspline
, notline
:Live demo: http://jsfiddle.net/BlackLabel/fputh18a/
API Reference: https://api.highcharts.com/highcharts/plotOptions.spline.dataLabels