I updated code to make this work and that seemed to fix it until today. Any ideas here?
http://www.towncharts.com/United-States-Demographics-data.html#Figure49 Here is my code: google.charts.setOnLoadCallback(drawTable49); function drawTable49() { var data49 = google.visualization.arrayToDataTable([['Region','United States'], [{v:'150',f:'Europe'},0.117], [{v:'142',f:'Asia'},0.292], [{v:'002',f:'Africa'},0.042], [{v:'009',f:'Oceania'},0.006], [{v:'019',f:'Americas'},0.542] ]); var formatterPec = new google.visualization.NumberFormat({pattern: '##%'});var formatterPec1 = new google.visualization.NumberFormat({pattern: '##.#%'});var formatterBar = new google.visualization.BarFormat({width: 60});formatterPec.format(data49,1);var options49 ={'chartType':'GeoChart','containerId':'bigchart_div49','resolution':'continents','width':700,'height':300,'legend':{numberFormat:'#.#%'},'colors':['#C5E6FC','#0A67A3'],'chartArea':{width:"90%",height:"98%"}}; var Table49 = new google.visualization.GeoChart(document.getElementById('bigchart_div49')); Table49.draw(data49, options49); } -- 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/a01e7d83-b364-4597-8a74-19949cdd9929%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
