I am using high-charts column chart. Here is my chart options ( y axis portion ).
yAxis: {
allowDecimals: false,
min: 0,
max: 100,
tickInterval: 25,
title: {
text: ''
}
// labels: {
// formatter: function () {
//
// }
// }
},
Currently, it is displaying y axis label from 0 to 100. But, I would like to append '%' symbol to only '0' and leave rest of the labels as is. I tried sing label formatter, couldn't figure which values to use. Can any one suggest me any idea ?
Thanks