function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 219], ['Angola', 3], ['Argentina', 9], ['Belgium', 2], ['Benin', 11], ['Bolivia', 1], ['Brazil', 232], ['Burkina Faso', 64], ['Burundi', 47], ['Cameroon', 909], ['Central African Republic', 6], ['Chile', 1], ['Colombia', 8], ['Democratic Republic of the Congo', 290], ['Ecuador', 0], ['French Guiana', 7], ['Gabon', 11], ['Gambia', 6], ['Germany', 1], ['Guinea-Bissau', 78], ['Guyana', 4], ['Iceland', 12], ['India', 126], ['Indonesia', 8], ['Iran', 21], ['Italy', 2], ['Ivory Coast', 136], ['Kenya', 13], ['Liberia', 7], ['Malawi', 4], ['Panama', 4], ['Paraguay', 8], ['Peru', 63], ['Russia', 2], ['Rwanda', 14], ['Saint Vincent and the Grenadines', 3], ['Saint Vincent and the Grenadines, Iceland', 1], ['Senegal', 43], ['Sierra Leone', 12], ['South Africa', 118], ['Suriname', 1], ['Swaziland', 7], ['Tanzania', 13], ['Trinidad and Tobago', 2188], ['Uganda', 10], ['United States of America', 1], ['Venezuela', 1], ['Vietnam', 46], ['Zambia', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=4775', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 49, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);