function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 293], ['Afghanistan', 13], ['Albania', 6], ['Algeria', 4], ['Australia', 4], ['Bhutan', 1], ['Bosnia and Herzegovina', 572], ['Brazil', 1], ['Bulgaria', 3], ['Cameroon', 3], ['Central African Republic', 1], ['China', 136], ['Colombia', 12], ['Democratic Republic of the Congo', 11], ['Ecuador', 2], ['Equatorial Guinea', 2], ['Ethiopia', 1], ['France', 4], ['French Polynesia', 80], ['Gabon', 1], ['Germany', 1], ['Greece', 809], ['Guinea-Bissau', 4], ['Haiti', 1], ['Iceland', 4], ['India', 13], ['Iran', 12], ['Iraq', 3], ['Israel', 2], ['Italy', 9], ['Jamaica', 1], ['Japan', 5], ['Kenya', 29], ['Macedonia', 5], ['Madagascar', 176], ['Malaysia', 2], ['Morocco', 37], ['Nepal', 11], ['Republic of the Congo', 1], ['Russia', 4], ['Rwanda', 1], ['Sao Tome and Principe', 2], ['Serbia', 4], ['Seychelles', 1], ['Sierra Leone', 1], ['Slovenia', 1], ['South Africa', 4], ['South Korea', 14], ['Tanzania', 5], ['Thailand', 2], ['Turkey', 63], ['Turkmenistan', 5], ['United States of America', 4], ['Uzbekistan', 2], ['Vietnam', 22] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2410', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 55, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);