function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 5606], ['Ashmore and Cartier Islands', 1], ['Cameroon', 3], ['Canada', 909], ['Cape Verde', 13], ['Chile', 712], ['China', 62], ['Cyprus', 3], ['Democratic Republic of the Congo', 12], ['Finland', 13], ['Gambia', 1], ['Ghana', 5], ['Guadeloupe', 1], ['Heard Island and McDonald Islands', 2], ['Iceland', 112], ['Ivory Coast', 1], ['Japan', 2], ['Jersey', 2], ['Kenya', 31], ['Liberia', 1], ['Madagascar', 19], ['Mauritius', 1], ['Mexico', 1], ['Mozambique', 1], ['Netherlands', 5], ['New Zealand', 58], ['Nigeria', 18], ['Norway', 18], ['Oman', 20], ['Portugal', 2], ['Russia', 1], ['Senegal', 3], ['Serbia', 1], ['Seychelles', 10], ['Sierra Leone', 1], ['South Africa', 47], ['Sweden', 6], ['Switzerland', 10], ['Tanzania', 1], ['Thailand', 3], ['Uganda', 48], ['United States of America', 778] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=8544', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 42, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);