--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualizati...@googlegroups.com.
To post to this group, send email to google-visua...@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/367547e2-ad5b-484c-97c9-ad6754fe6ebc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Daniel,thanks so much for you answer,but I did try it without success.I'm able to format as I want the hAxis generated data, that's in date format, but trying to apply your suggestion does not seem to solve the problem,here a little snippet of code ( the AreaChart id generated using a chartWrapper, because it is part of Dashboard ) :
var AreaChartasc = new google.visualization.ChartWrapper({'chartType': 'AreaChart','containerId': 'chart_Ascolti','options': {'title': 'titolo',
'vAxis': {
'gridlines': { 'count': -1 }, // variable number of gridlines, enables formatOptions as well.'formatOptions': { 'groupingSymbol': '.' },
},'hAxis': { 'format': 'dd/MM' },'crosshair': { 'trigger': 'both' },'view': {'columns': [0, 1, 2, 3]}}});
thsnaks again for your effort,
--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualizati...@googlegroups.com.
To post to this group, send email to google-visua...@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/1f2c8d85-09cc-4710-a36b-433464a258f8%40googlegroups.com.
the grouping symbol is automatically determined based on the locale, so if you add the 'language' property to your google.charts.load() call, you should see the appropriate symbol.