score:11

Accepted answer

unfortunately in this case, you have to either take the pre formatted label, or rebuild the level of abbreviation you want in the formatter yourself.

in this case, you could something like

 yaxis: {
        labels: {
            formatter: function() {
                return '$'+this.value / 1000000 + 'm';
            }
        }
    },

score:0

put this code before call the chart

highcharts.setoptions({
    lang: {
        thousandssep: ','
    }
});

score:5

according to this stackoverflow post, you can call the original formatter with:

this.axis.defaultlabelformatter.call(this);

Related Query

More Query from same tag