HighCharts removes stack totals

I create a complex histogram, like this one . Please note that the total number of each stack is displayed at the top, how can I disable / hide this?

+5
source share
1 answer
yAxis: {
    min: 0,
    title: {
        text: 'Total fruit consumption'
    },
    stackLabels: {
        enabled: false,
        style: {
            fontWeight: 'bold',
            color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
        }
    }
},

you need to change the stack stack to false, as in the above example

stackLabels: {
            enabled: true,
+9
source

All Articles