function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 271], ['Armenia', 3], ['Australia', 35], ['Belgium', 2], ['Benin', 40], ['Brazil', 7], ['Bulgaria', 162], ['Burkina Faso', 26], ['Cameroon', 12], ['Canada', 35], ['China', 721], ['Colombia', 240], ['Costa Rica', 19], ['Democratic Republic of the Congo', 24], ['Ecuador', 58], ['France', 1870], ['Gabon', 14], ['Ghana', 4], ['Greece', 3], ['Grenada', 781], ['Guam', 1], ['Guinea-Bissau', 4], ['Guyana', 1], ['Hungary', 8], ['Iran', 51], ['Israel', 1], ['Italy', 1001], ['Ivory Coast', 5], ['Japan', 6], ['Kenya', 14], ['Madagascar', 9], ['Malaysia', 2], ['Malta', 1], ['Mexico', 1], ['Moldova', 11], ['Morocco', 5], ['Nigeria', 7], ['Panama', 78], ['Peru', 7], ['Russia', 31], ['Rwanda', 1], ['Senegal', 1], ['Seychelles', 1], ['South Africa', 45], ['Spain', 1310], ['Tajikistan', 7], ['Tanzania', 109], ['Thailand', 1], ['Trinidad and Tobago', 49], ['Turkey', 152], ['Ukraine', 22], ['United States of America', 37], ['Uzbekistan', 1], ['Zimbabwe', 11] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=7318', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 54, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);