function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 31], ['Albania', 3], ['Algeria', 23], ['Argentina', 3], ['Australia', 4], ['Austria', 70], ['Belgium', 13], ['Bosnia and Herzegovina', 8], ['Bulgaria', 24], ['Cape Verde', 4], ['Chile', 16], ['China', 9], ['Costa Rica', 1], ['Croatia', 18], ['Czech Republic', 111], ['Ecuador', 2], ['Egypt', 20], ['France', 264], ['Georgia', 1], ['Germany', 161], ['Greece', 189], ['Hungary', 3], ['Iran', 5], ['Italy', 560], ['Japan', 2], ['Lebanon', 9], ['Libya', 1], ['Macedonia', 6], ['Malta', 4], ['Mexico', 2], ['Morocco', 5], ['Paraguay', 1], ['Poland', 4], ['Portugal', 47], ['Romania', 2], ['Russia', 1], ['Serbia', 1], ['Slovakia', 15], ['Slovenia', 15], ['South Africa', 1], ['Spain', 55], ['Sri Lanka', 1], ['Switzerland', 82], ['Syria', 10], ['Tunisia', 10], ['Turkey', 67], ['United Kingdom', 3], ['United States of America', 21], ['Venezuela', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=1909', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 49, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);