Search code examples
amcharts

Number format with Amcharts Javascript


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!


Solution

  • 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": ""
            }
        });