function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 54], ['Argentina', 9], ['Bolivia', 279], ['Brazil', 182], ['Cameroon', 135], ['Colombia', 1], ['Germany', 1], ['Guam', 0], ['Guyana', 1], ['Iceland', 12], ['Iran', 21], ['Italy', 2], ['Japan', 45], ['Panama', 3], ['Paraguay', 7], ['Peru', 9], ['Russia', 2], ['Saint Vincent and the Grenadines', 3], ['Saint Vincent and the Grenadines, Iceland', 1], ['South Africa', 49], ['Suriname', 1], ['Venezuela', 1], ['Vietnam', 46] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=864', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 23, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);