function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 185], ['Afghanistan', 3], ['Algeria', 1], ['Argentina', 5], ['Armenia', 1], ['Austria', 1], ['Belgium', 1], ['Bhutan', 2], ['Bolivia', 3], ['Brazil', 4], ['Bulgaria', 2], ['Burundi', 3], ['Cameroon', 5], ['Canada', 1], ['Chile', 1], ['China', 28], ['Colombia', 1], ['Comoros', 1], ['Costa Rica', 1], ['Cuba', 1], ['Democratic Republic of the Congo', 8], ['Egypt', 1], ['Ethiopia', 6], ['Gabon', 2], ['Germany', 1], ['Greece', 2], ['Guatemala', 13], ['Guinea-Bissau', 2], ['India', 18], ['Indonesia', 7], ['Ivory Coast', 4], ['Japan', 11], ['Kenya', 12], ['Madagascar', 35], ['Malawi', 1], ['Malaysia', 3], ['Mexico', 25], ['Myanmar', 5], ['Namibia', 1], ['Nepal', 21], ['Netherlands', 1], ['Nicaragua', 2], ['Nigeria', 1], ['Pakistan', 1], ['Panama', 17], ['Peru', 3], ['Philippines', 4], ['Portugal', 1], ['Puerto Rico', 1], ['Republic of the Congo', 1], ['Russia', 1], ['Rwanda', 7], ['RĂ©union', 4], ['Saint Vincent and the Grenadines', 2], ['Senegal', 3], ['Seychelles', 1], ['Sierra Leone', 4], ['Singapore', 1], ['Solomon Islands', 1], ['South Africa', 3], ['South Korea', 3], ['Spain', 6], ['Sri Lanka', 2], ['Sweden', 1], ['Tanzania', 5], ['Thailand', 5], ['Trinidad and Tobago', 2], ['Turkey', 5], ['Turkmenistan', 1], ['United Kingdom', 2], ['United States of America', 3], ['Zimbabwe', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=523', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 72, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);