function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 69], ['Argentina', 18], ['Australia', 80], ['Australia, Antarctica', 1], ['Austria', 1], ['Belgium', 8], ['Bosnia and Herzegovina', 1], ['Brazil', 41], ['Canada', 4], ['Chile', 62], ['China', 31], ['Costa Rica', 1], ['Croatia', 1], ['Czech Republic', 2], ['Ecuador', 18], ['Egypt', 4], ['Falkland Islands', 2], ['France', 8], ['French Polynesia', 2], ['Georgia', 5], ['Germany', 105], ['Greece', 1], ['Hungary', 61], ['Iceland', 15], ['Iceland, South Georgia and the South Sandwich Islands', 1], ['India', 12], ['Indonesia', 4], ['Italy', 24], ['Japan', 14], ['Malaysia', 1], ['Netherlands', 1], ['New Caledonia', 36], ['New Zealand', 11], ['Panama', 1], ['Papua New Guinea', 1], ['Paraguay', 6], ['Puerto Rico', 2], ['Russia', 45], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Lucia', 8], ['Seychelles', 2], ['Slovakia', 1], ['South Africa', 49], ['Sweden', 4], ['Switzerland', 4], ['Tanzania', 3], ['Ukraine', 8], ['United Kingdom', 11], ['United States of America', 9], ['Venezuela', 4] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=804', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 50, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);