function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 12918], ['Albania', 122], ['Argentina', 4], ['Austria', 4], ['Bermuda', 1], ['Bosnia and Herzegovina', 9], ['Brazil', 36], ['Bulgaria', 19], ['Cameroon', 31], ['Colombia', 85], ['Croatia', 4], ['Democratic Republic of the Congo', 54], ['France', 263], ['French Guiana', 10], ['Gabon', 8], ['Georgia', 0], ['Germany', 2], ['Greece', 15], ['Guyana', 1], ['Hungary', 2], ['Iceland', 22], ['India', 231], ['Indonesia', 14], ['Italy', 4], ['Ivory Coast', 9], ['Japan', 7], ['Laos', 14], ['Lesotho', 5], ['Liberia', 1], ['Macedonia', 10], ['Madagascar', 1], ['Martinique', 1], ['Mexico', 10], ['Myanmar', 1], ['Netherlands', 3], ['New Caledonia', 1], ['Nigeria', 1], ['Peru', 170], ['Philippines', 26], ['Romania', 3], ['Saint Lucia', 2], ['Serbia', 29], ['Slovenia', 3], ['South Africa', 65], ['South Korea', 2], ['Spain', 2], ['Sri Lanka', 1], ['Swaziland', 1], ['Sweden', 1], ['Taiwan', 20], ['Thailand', 2], ['Turkey', 1], ['United Kingdom', 1], ['Venezuela', 8], ['Vietnam', 15] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=14275', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 55, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);