function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 791], ['Algeria', 176], ['American Samoa', 1], ['Angola', 7], ['Argentina', 28], ['Austria', 4], ['Benin', 3], ['Bolivia', 29], ['Bosnia and Herzegovina', 1], ['Botswana', 21], ['Brazil', 3305], ['Burkina Faso', 37], ['Burundi', 218], ['Cameroon', 44], ['Central African Republic', 30], ['Chad', 1], ['Colombia', 6], ['Cyprus', 11], ['Czech Republic', 3], ['Democratic Republic of the Congo', 31], ['Democratic Republic of the Congo, Rwanda', 2], ['Egypt', 1], ['Ethiopia', 8], ['France', 106], ['French Guiana', 1], ['Gabon', 1], ['Germany', 1], ['Ghana', 2], ['Gibraltar', 2], ['Greece', 10], ['Grenada', 23], ['Guinea-Bissau', 2], ['Guyana', 5], ['Hungary', 16], ['India', 21], ['Iran', 1], ['Italy', 33], ['Ivory Coast', 3], ['Jordan', 7], ['Kenya', 11], ['Libya', 1], ['Malawi', 9], ['Mauritania', 1], ['Mexico', 2], ['Morocco', 47], ['Mozambique', 4], ['Namibia', 78], ['Niger', 1], ['Nigeria', 12], ['Panama', 2], ['Paraguay', 55], ['Peru', 2], ['Philippines', 2], ['Portugal', 76], ['Romania', 2], ['Rwanda', 2], ['Senegal', 5], ['Serbia', 6], ['Slovakia', 6], ['South Africa', 123], ['Spain', 398], ['Spain, Grenada', 1], ['Sudan', 5], ['Syria', 2], ['Tanzania', 21], ['Tunisia', 76], ['Turkey', 19], ['Uganda', 2], ['United States of America', 1], ['Uruguay', 2], ['Venezuela', 3], ['Vietnam', 6], ['Zambia', 10], ['Zimbabwe', 23] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=6008', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 74, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);