function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 41], ['American Samoa', 348], ['Antarctica', 27], ['Argentina', 21], ['Bahamas', 1], ['Bouvet Island', 458], ['Brazil', 2], ['Chile', 5], ['Falkland Islands', 10], ['Guam', 2], ['Indonesia', 3], ['Japan', 10], ['Kiribati', 8], ['New Zealand', 6], ['Northern Mariana Islands', 2], ['Norway', 3], ['Russia', 4], ['Saint Helena, Ascension and Tristan da Cunha', 2], ['Seychelles', 4], ['South Africa', 6], ['South Georgia and the South Sandwich Islands', 2], ['South Georgia and the South Sandwich Islands, Antarctica', 1], ['South Korea', 3], ['Tokelau', 1], ['United Kingdom', 4], ['United Kingdom, South Georgia and the South Sandwich Islands', 1], ['United States Pacific Island Wildlife Refuges', 10], ['United States Pacific Island Wildlife Refuges, Kiribati', 1], ['Wake Island', 9], ['south georgia island', 20] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=1015', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 30, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);