One issue in my chart is that the values are not formatted correctly.
For instance, I have a number 15900
and I would like it to be displayed as 15 900
with a space between thousands and hundreds.
Below is the code snippet I would like to implement for spacing:
chart.dateFormatter.dateFormat = "HH:MM ";
chart.numberFormatter.numberFormat = "#.#a ";
chart.numberFormatter.bigNumberPrefixes = [
{ "number": 1e+0, "suffix": " " }
];
I have searched the documentation but couldn't find the exact solution I need.
https://docs.amcharts.com/javascriptcharts/AmChart#numberFormatter