I would like to create links on a geochart. Current code is:
<script type="text/javascript" src="https://www.google.com/jsapi"></script> <script type="text/javascript"> google.load("visualization", "1", {packages:["geochart"]}); google.setOnLoadCallback(drawRegionsMap); function drawRegionsMap() { var data = google.visualization.arrayToDataTable([ ['Country', 'Popularity'], ['US', 4], ['CA', 22], ]); var options = { region: 'world' }; var chart = new google.visualization.GeoChart(document.getElementById( 'regions_div')); chart.draw(data, options); } </script> I would like to be able to click on one of the countries (US or Canada, in this example) and link to a page. Any ideas? -- 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/d/optout.
