function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 13], ['Cameroon', 0], ['Gabon', 6], ['Guinea-Bissau', 0], ['Mozambique', 4], ['Republic of the Congo', 42], ['Seychelles', 2], ['Tanzania', 44], ['Uganda', 2], ['zanzibar island', 3] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=116', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 10, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);