I have a stacked grouped column highcharts like http://jsfiddle.net/d_paul/d9yb1yy1/
currently in stackLabels I'm adding the stack name, now I am trying to add the total count of a column at the top of every column. however when I add them into the dataLabels, I see other series of labels also showing up.
plotOptions: {
column: {
stacking: 'normal'
},
formatter : function() {
return "<span>" + this.total + "</span>";
}
},
this will show the labels on every stacked series. I want to simple show one count / column in the chart any idea?