hi Team,
I'm trying to formatting the label on a Y Axis,
the original values are int values like 10000,20000,30000.....
and I tired to format these values to 10K,20K,30K....
tried label formatting feature as below, but not work:
Code:axes: [
{
name: 'y1',
location: 'left',
interval: 4000,
maximum: 120000,
labels: {
stringFormat: '%d'/1000
}
}
]
how can I do that?
any comment is appreciated, thanks!