There are DMA shapes and they are addresses by metropolitan area codes, but I was wondering if there is any way to show a full name value when I hover over one of the areas with the mouse. Presently I have to assign each area a name with extra text in the dataset, but if Google went as far as mapping out DMAs on their Visualization API, why wouldn't they store their proper names in it. So, is there any way to access them?
Here's an example of what I'm doing right now, you can try it out in Code Playground<http://code.google.com/apis/ajax/playground/?type=visualization#geo_chart> Any function drawVisualization() { var data = google.visualization.arrayToDataTable([ ['', 'DMA', 'Airings'], ['500', 'Portland-Auburn, ME', 200], ['501', 'New York, NY', 300], ['751', 'DENVER, CO', 400], ['618', 'Houston, TX', 500] ]); var options = { region: 'US', displayMode: 'regions', resolution: 'metros', width:500, height:400 }; var geomap = new google.visualization.GeoChart(document.getElementById( 'visualization')); geomap.draw(data, 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.
