I want to change the formatting of the values on the axis to look like so:
1
100
1 000
10 000
100 000
1 000 000
Meaning, I'd like to change the default grouping symbol to a space (' '). So far I tried with different approaches but none of them worked. Even the documentation couldn't help me much. Anyone?
Important:
I want to change the formatting on the values on the axis, not the inner values.
I don't want to change the language of the google chart.
use option -->
ticks
-- to provide custom labels for either axishAxis
orvAxis
using object notation, provide both a value
v:
and a formatted valuef:
see following working snippet...
EDIT
you can use a number formatter to create the number pattern
format the data table to see the format on the tooltips
still need to create custom labels to see on the axis
see following working snippet...