function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2], ['Armenia', 16], ['Austria', 9], ['Belgium', 1], ['Bermuda', 26], ['Bulgaria', 18], ['China', 684], ['Croatia', 20], ['Cyprus', 16], ['Czech Republic', 79], ['Egypt', 2], ['France', 19], ['Germany', 3], ['Greece', 90], ['Hungary', 35], ['India', 40], ['Indonesia', 2], ['Iran', 14], ['Iraq', 17], ['Ireland', 4], ['Israel', 5], ['Italy', 7], ['Japan', 214], ['Jordan', 1], ['Kazakhstan', 5], ['Laos', 70], ['Lebanon', 1], ['Malaysia', 8], ['Moldova', 3], ['Mongolia', 8], ['Morocco', 23], ['Myanmar', 2], ['Nepal', 11], ['Pakistan', 20], ['Palestine', 5], ['Philippines', 9], ['Poland', 6], ['Portugal', 46], ['Russia', 144], ['Saint Vincent and the Grenadines', 28], ['Senegal', 1], ['Serbia', 5], ['Slovakia', 7], ['Somalia', 1], ['South Korea', 199], ['Spain', 57], ['Sri Lanka', 1], ['Sweden', 43], ['Switzerland', 43], ['Syria', 5], ['Taiwan', 29], ['Tajikistan', 3], ['Thailand', 10], ['Turkey', 44], ['Turkmenistan', 59], ['Uganda', 1], ['Ukraine', 5], ['United Arab Emirates', 36], ['United Kingdom', 112], ['United States of America', 45], ['Uzbekistan', 1], ['Venezuela', 140], ['Vietnam', 16] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2576', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 63, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);