function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1391], ['Angola', 38], ['Argentina', 21], ['Australia', 18], ['Austria', 7], ['Bahamas', 733], ['Bahrain', 3], ['Bonaire, Sint Eustatius and Saba', 240], ['Bosnia and Herzegovina', 5], ['Brazil', 49], ['Cape Verde', 1], ['Chile', 10], ['China', 658], ['Colombia', 142], ['Coral Sea Islands', 7], ['Cuba', 11], ['CuraƧao', 1555], ['Denmark', 1], ['France', 173], ['Germany', 17], ['Ghana', 2], ['Gibraltar', 5], ['Heard Island and McDonald Islands', 20], ['Iceland', 5], ['India', 13], ['Indonesia', 12], ['Ireland', 2], ['Israel', 2], ['Italy', 136], ['Japan', 1842], ['Kiribati', 1], ['Malaysia', 948], ['Mexico', 31], ['Morocco', 2], ['Netherlands', 1], ['New Zealand', 1], ['Palau', 3], ['Panama', 26], ['Philippines', 622], ['Poland', 11], ['Portugal', 24], ['Saint Vincent and the Grenadines', 37], ['Saudi Arabia', 1], ['Singapore', 4], ['South Korea', 83], ['Sri Lanka', 1], ['Sweden', 1], ['Switzerland', 197], ['Taiwan', 5], ['Thailand', 111], ['Tunisia', 1], ['Turkey', 148], ['Turks and Caicos Islands', 2], ['United Kingdom', 23], ['United States of America', 21], ['Vietnam', 88], ['angola basin', 6], ['jersey island', 29] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=9547', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 58, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);