function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 9977], ['Afghanistan', 1], ['Algeria', 1], ['Armenia', 1], ['Austria', 39], ['Azerbaijan', 1], ['Bahamas', 13], ['British Virgin Islands', 368], ['Canada', 1345], ['Cayman Islands', 2], ['China', 21], ['Cuba', 264], ['Cyprus', 11], ['Czech Republic', 1], ['Denmark', 4], ['Dominica', 5], ['Dominican Republic', 231], ['Egypt', 2], ['Eritrea', 1], ['Finland', 1], ['France', 634], ['Germany', 57], ['Greece', 9], ['Grenada', 18], ['Guatemala', 14], ['Haiti', 19], ['Iceland', 134], ['Iran', 6], ['Ireland', 1], ['Israel', 1], ['Italy', 9], ['Jamaica', 28], ['Japan', 1457], ['Kazakhstan', 3], ['Lebanon', 602], ['Mexico', 1508], ['Mongolia', 1], ['Morocco', 99], ['Oman', 2], ['Poland', 3], ['Portugal', 15], ['Puerto Rico', 487], ['Romania', 1], ['Russia', 36], ['Saint Kitts and Nevis', 19], ['Saint Lucia', 6], ['Saint Pierre and Miquelon', 1], ['Saint Vincent and the Grenadines', 96], ['Singapore', 1], ['Sint Martin', 2], ['South Africa', 1], ['South Korea', 570], ['Spain', 11], ['Sweden', 222], ['Switzerland', 1], ['Taiwan', 6], ['Turkey', 5], ['Turkmenistan', 4], ['United Arab Emirates', 7], ['United Kingdom', 19], ['United States Virgin Islands', 60], ['United States of America', 8007], ['Vanuatu', 28], ['Wake Island', 1], ['Yemen', 22] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=26522', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 65, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);