function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 5558], ['American Samoa', 1], ['Angola', 8], ['Argentina', 59], ['Belize', 21], ['Bolivia', 179], ['Botswana', 4], ['Brazil', 8112], ['Cameroon', 8], ['Canada', 12], ['Cayman Islands', 9], ['Central African Republic', 1], ['Colombia', 624], ['Costa Rica', 204], ['Democratic Republic of the Congo', 66], ['Ecuador', 197], ['Egypt', 4], ['El Salvador', 23], ['Equatorial Guinea', 9], ['Falkland Islands', 5], ['France', 19], ['French Guiana', 22], ['Gabon', 3], ['Gambia', 10], ['Ghana', 2], ['Guatemala', 64], ['Guinea-Bissau', 2], ['Guyana', 318], ['Hungary', 1], ['Iceland', 266], ['Indonesia', 5], ['Italy', 13], ['Japan', 53], ['Jordan', 1], ['Kenya', 1], ['Malawi', 3], ['Mexico', 965], ['Nicaragua', 24], ['Niger', 4], ['Nigeria', 5], ['Panama', 128], ['Paraguay', 227], ['Peru', 552], ['Portugal', 105], ['Puerto Rico', 9], ['Republic of the Congo', 10], ['Saint Helena, Ascension and Tristan da Cunha', 22], ['Saint Pierre and Miquelon', 2], ['Saint Vincent and the Grenadines', 1], ['Sao Tome and Principe', 2], ['Senegal', 1], ['Sierra Leone', 1], ['Spain', 17], ['Suriname', 63], ['Taiwan', 14], ['Tanzania', 1], ['Trinidad and Tobago', 17], ['Uganda', 1], ['United Kingdom', 1], ['United States of America', 32], ['Uruguay', 7169], ['Venezuela', 534], ['Zambia', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=25797', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 63, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);