function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 56], ['Afghanistan', 1], ['Argentina', 18], ['Australia', 156], ['Belize', 1], ['Bolivia', 17], ['Brazil', 224], ['Chile', 79], ['China', 19], ['Colombia', 3], ['Costa Rica', 34], ['Cuba', 13], ['Ecuador', 26], ['El Salvador', 39], ['Ghana', 3], ['Guatemala', 1], ['Heard Island and McDonald Islands', 26], ['Iceland', 100], ['India', 27], ['Japan', 1], ['Kazakhstan', 10], ['Kyrgyzstan', 4], ['Liberia', 5], ['Macedonia', 6], ['Mexico', 30], ['Nicaragua', 3], ['Panama', 13], ['Paraguay', 1], ['Peru', 65], ['Saint Helena, Ascension and Tristan da Cunha', 37], ['Saint Kitts and Nevis', 2], ['Saint Pierre and Miquelon', 55], ['Saint Vincent and the Grenadines', 1], ['Seychelles', 5], ['Slovenia', 4], ['Spain', 19], ['Suriname', 1], ['Tajikistan', 5], ['United States of America', 119], ['Uruguay', 133] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=1362', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 40, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);