I have a column chart very similar to this one demo. I want to display percentage on the Y-axis and not the count.Count should be displayed on top of each bar. I do not want
You could do this:
yAxis: {
labels: {
format: '{value}%'
}
}
You can use formatter http://api.highcharts.com/highcharts#yAxis.labels.formatter and add symbol to your label.
Here is what I did:
yAxis: {
labels: {
formatter: function() {
return this.value+"%";
}
},
}
what I did is:
yAxis: {min: 0, max:100,tickInterval: 25,
title: {
text: "title"
},
labels: {
format: '{value}%',
}
}
Use this in plot options,
plotOptions: { column: { stacking:'percent', pointPadding: 0.2, borderWidth: 0 } },