is there a way to display a thousand number in the format 1.200,55 instead of 1,200.55?
Thanks in advance for any help.
is there a way to display a thousand number in the format 1.200,55 instead of 1,200.55?
Thanks in advance for any help.
There is a section in the documentation about numberformats
. What you'd need to set are decimalSymbol
and groupingSymbol
.
var formatter = new google.visualization.NumberFormat(
{decimalSymbol: ',', groupingSymbol: '.'});
Found another way in order to customize text for a country or language, affecting the formatting of values such as currencies, dates, and numbers.
https://developers.google.com/chart/interactive/docs/basic_load_libs#loadwithlocale