function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 694], ['Argentina', 7], ['Australia', 1], ['Belgium', 2], ['Benin', 2], ['Bermuda', 5], ['Brazil', 5], ['Cameroon', 1], ['Canada', 7], ['China', 1325], ['Colombia', 97], ['Costa Rica', 731], ['Cuba', 3], ['Dominican Republic', 1], ['Ecuador', 3], ['Egypt', 1], ['Eritrea', 4], ['Georgia', 2], ['Ghana', 4], ['Grenada', 363], ['Guam', 190], ['India', 196], ['Indonesia', 1], ['Iran', 73], ['Isle of Man', 142], ['Italy', 6], ['Jamaica', 5], ['Japan', 72], ['Lebanon', 1], ['Madagascar', 3], ['Malaysia', 41], ['Malta', 2], ['Mauritius', 1], ['Mexico', 3], ['Mozambique', 2], ['Netherlands', 1], ['New Zealand', 4], ['Nigeria', 2], ['Pakistan', 11], ['Paraguay', 3], ['Peru', 1], ['Puerto Rico', 8], ['Romania', 7], ['Russia', 64], ['Saint Lucia', 1], ['Saint Vincent and the Grenadines', 2], ['Serbia', 50], ['South Africa', 62], ['South Korea', 46], ['Spain', 85], ['Sri Lanka', 31], ['Sweden', 5], ['Switzerland', 24], ['Taiwan', 1], ['Thailand', 1], ['Trinidad and Tobago', 25], ['Turkey', 14], ['Uganda', 23], ['Ukraine', 10], ['United States Virgin Islands', 1], ['United States of America', 118], ['Venezuela', 3], ['Vietnam', 4], ['Virgin Islands', 2], ['Wake Island', 1], ['Zimbabwe', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4608', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 66, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);