The way I got around this was this:
I added a 3rd column at the very end:
*data.addColumn('string', 'Display');*
Then you create a view:
*var geoChart = new google.visualization.GeoChart(container);*
*var formatter = new google.visualization.PatternFormat('{1}'); *
*formatter.format(data, [0, 2]);*
*var view = new google.visualization.DataView(data);*
*view.setColumns([0, 1]);*
*
*
Finally you render the view instead of the geochart:
*geoChart.draw(view, options);*
--
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.