function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1049], ['Argentina', 2], ['Aruba', 1], ['Australia', 19], ['Barbados', 1], ['Belize', 24], ['Brazil', 118], ['China', 1], ['Colombia', 3], ['CuraƧao', 2], ['Djibouti', 9], ['Fiji', 32], ['France', 130], ['Germany', 10], ['Greece', 3], ['Iceland', 11], ['India', 141], ['Indonesia', 45], ['Ireland', 1], ['Italy', 7], ['Japan', 40], ['Malaysia', 91], ['Mexico', 124], ['Micronesia', 1], ['Netherlands', 1], ['New Caledonia', 3], ['New Zealand', 1], ['Nicaragua', 51], ['Oman', 1], ['Pakistan', 11], ['Palau', 11], ['Panama', 52], ['Papua New Guinea', 3], ['Philippines', 5], ['Puerto Rico', 2], ['Saint Pierre and Miquelon', 38], ['Saint Vincent and the Grenadines', 12], ['Singapore', 142], ['Switzerland', 6], ['Thailand', 6], ['Tonga', 3], ['Trinidad and Tobago', 2], ['Turkey', 4], ['United States of America', 37], ['Venezuela', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2260', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 45, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);