function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 5618106], ['Albania', 4], ['Algeria', 4], ['Argentina', 3], ['Armenia', 1], ['Azerbaijan', 1], ['Bolivia', 4], ['Brazil', 32], ['Cameroon', 3], ['Chile', 2], ['China', 50], ['Colombia', 11], ['Comoros', 11], ['Ecuador', 4], ['Ethiopia', 1], ['France', 12], ['Georgia', 2], ['Ghana', 1], ['Greece', 56], ['Heard Island and McDonald Islands', 1], ['Iran', 54], ['Iraq', 3], ['Italy', 10], ['Kazakhstan', 2], ['Kenya', 18], ['Lesotho', 8], ['Macedonia', 1], ['Madagascar', 413], ['Malta', 1], ['Mauritius', 8], ['Mayotte', 14], ['Mexico', 3], ['Mongolia', 4], ['Mozambique', 1], ['Myanmar', 1], ['New Zealand', 54], ['Paraguay', 16], ['Peru', 71], ['Philippines', 1], ['Russia', 6], ['Saint Pierre and Miquelon', 1], ['Somalia', 2], ['South Africa', 130], ['Swaziland', 3], ['Tajikistan', 3], ['Tanzania', 6], ['Thailand', 30], ['Turkey', 71], ['United Kingdom', 1], ['United States of America', 12], ['Uzbekistan', 1], ['Venezuela', 1], ['Yemen', 6] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=5619265', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 53, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);