Number format with Amcharts Javascript

orafaelreis picture orafaelreis · Oct 18, 2012 · Viewed 18.6k times · Source

Amchart give me amazing graphics into HTML but...

How to format the number axis? Currently it shows me 65,000 and I need value like 65000. No commas!

Thanks!

Answer

orafaelreis picture orafaelreis · Oct 18, 2012

I solved the problem!

Into AmCharts.ready(function(){ put

chart.numberFormatter = {
  precision:-1,decimalSeparator:",",thousandsSeparator:""
};

All Number Format happens there!


var chart = AmCharts.makeChart("chartdiv", {
        [...]
        "numberFormatter": {
            "precision": -1,
            "decimalSeparator": ",",
            "thousandsSeparator": ""
        }
    });