I created a geo chart with the following code: 

     
      var data2 = google.visualization.arrayToDataTable([
        ['Province','Name','Percentage'  ],
        [ 'CA-ON','Ontario',eval('6319 / 256000 * 100')],
        ['CA-BC','British Columbia', eval('2150 / 102800 * 100')],
        ['CA-MB', 'Manitoba',eval('1088 / 23500 * 100')],
        ['CA-AB','Alberta',eval('3401 / 73000 * 100')],
        ['CA-NS','Nova Scotia' ,eval('1718 / 43600 * 100')],
        ['CA-PE','Prince Edward' ,eval('1080 / 4400 * 100')],
        ['CA-NB','New Brunswick',eval('1080 / 32200 * 100')],
        ['CA-SK', 'Saskatchewan',eval('1657 / 18300 * 100')],
        ['CA-YT','Yukon' ,1],
        ['CA-NT', 'Northern Territories',1],
        ['CA-NU','Nunavut',1],
        ['CA-NL', 'New Foundland',eval('614 / 15900 * 100')],
        ['CA-QC', 'Quebec',eval("3065 / 124100 * 100")]
      ]);


      datat2.setColumnProperty(2,'role','tooltip');

     var options2 = {
            region: 'CA',
            displayMode: '',
            resolution: 'provinces',
            colorAxis: {colors: c}
            };

           var chart2 = new 
google.visualization.GeoChart(document.getElementById('province_div'));
           chart2.draw(data2,options2);





To specify the provinces, I have to input them in their ISO format in the 
first column like "CA-ON" which is Ontario. But I don't want this to show 
on the tooltip. I looked around and found
the 
setColumnProperty

but it's still not working I want to display the Province name in full 
instead of the abbreviated ISO format.

Thanks.










-- 
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 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/c482cd77-be98-43e5-9433-05a8fb858cb3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to