Hi there, I'm trying to use the Geochart but all country names are
displayed in english on hover

Is there any way I can change these names?

Brazil to Brasil, France to França, etc..

Thanks!


    function drawRegionsMap() {
      var data = new google.visualization.DataTable();
      data.addRows(2);
      data.addColumn('string', 'Country');
      data.addColumn('number', 'Popularity');
      data.setValue(0, 0, 'Brazil');
      data.setValue(0, 1, 400);
      data.setValue(1, 0, 'France');
      data.setValue(1, 1, 600);

      var options = {};

      var container = document.getElementById('map_canvas');
      var geochart = new google.visualization.GeoChart(container);
      geochart.draw(data, options);
  };

-- 
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.

Reply via email to