Hi! I'm using the old version of the column chart
( google.load("visualization", "1", {packages:["columnchart"]}); ).
I'm brazilian and here the number format is different ( the decimal
symbol is a comma and the grouping symbol is a dot ). I already used
the google.visualization.NumberFormat to change this on my data table,
like this:
var formatter = new google.visualization.NumberFormat({
decimalSymbol: ',',
groupingSymbol: '.'
});
formatter.format(data, 1);
barsVisualization.draw(data, { width:
document.getElementById('graficoZero').style.width,
height:
document.getElementById('graficoZero').style.height,
legend:
'bottom', is3D: true, allowHtml: true
});
But only the tooltip numbers have changed, the numbers on the vertical
axis (the scale) appear with the default number format... There's a
way to change their format?
Thanks in advance,
Lucas.
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.