function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2442], ['Albania', 197], ['American Samoa', 11], ['Argentina', 64], ['Australia', 197], ['Austria', 60], ['Azerbaijan', 4], ['Belgium', 2], ['Belize, Colombia', 1], ['Bermuda', 1], ['Bosnia and Herzegovina', 6], ['Brazil', 57], ['Cambodia', 1], ['Chile', 5], ['Colombia', 95], ['Costa Rica', 1], ['Croatia', 41], ['Cuba', 5], ['Czech Republic', 3], ['Denmark', 1], ['Dominican Republic', 2], ['Ecuador', 34], ['France', 389], ['French Polynesia', 11], ['Georgia', 7], ['Germany', 48], ['Ghana', 1], ['Greece', 36], ['Grenada', 2], ['Haiti', 1], ['Hungary', 28], ['Iceland', 26], ['India', 34], ['Iran', 8], ['Ireland', 2], ['Italy', 5205], ['Jamaica', 1], ['Kenya', 8], ['Macedonia', 1], ['Madagascar', 336], ['Malta', 2], ['Mexico', 3], ['Mongolia', 14], ['Morocco', 4], ['Myanmar', 1], ['Namibia', 5], ['Panama', 2], ['Papua New Guinea', 11], ['Paraguay', 4], ['Peru', 1], ['Poland', 4], ['Portugal', 22], ['Puerto Rico', 2], ['Republic of the Congo', 57], ['Romania', 1038], ['Russia', 0], ['Saint Kitts and Nevis', 35], ['Saint Vincent and the Grenadines', 10], ['Saudi Arabia', 1], ['Serbia', 2], ['Slovakia', 34], ['Slovenia', 102], ['South Africa', 298], ['Spain', 550], ['Sri Lanka', 2], ['Suriname', 1], ['Switzerland', 66], ['Taiwan', 4], ['Tanzania', 1], ['Trinidad and Tobago', 2], ['United States of America', 16], ['Venezuela', 9], ['Vietnam', 8], ['Virgin Islands', 1], ['Yemen', 2], ['alba', 1], ['morisi', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=11691', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 77, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);