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