Highcharts y axis thousands separator

user882670 picture user882670 · Nov 6, 2013 · Viewed 15.2k times · Source

How to add a thousands separator to the Y Axis of Highcharts?

This is what I have:

yAxis: [{ // Primary yAxis
                labels: {
                    

Answer

falsarella picture falsarella · Mar 25, 2015

In addition to what @jfrej suggested:

So, since you're formatting yAxis, {value} should work as expected:

yAxis: {
    labels: {
        format: '{value:,.0f} €'
    }
}