function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 4645], ['Albania', 1], ['Algeria', 3], ['American Samoa', 10], ['Angola', 3], ['Argentina', 9], ['Armenia', 226], ['Australia', 503], ['Austria', 1], ['Bolivia', 23], ['Brazil', 335], ['Brunei', 26], ['Cambodia', 104], ['Cameroon', 5], ['Chile', 2994], ['China', 2260], ['Costa Rica', 2160], ['Democratic Republic of the Congo', 2], ['Ecuador', 5], ['France', 9], ['French Guiana', 45], ['Gabon', 7], ['Germany', 1], ['Ghana', 3], ['Guam', 12], ['Guatemala', 718], ['Guinea-Bissau', 3], ['Honduras', 209], ['Hong Kong', 1], ['Iceland', 30], ['India', 44], ['Indonesia', 46], ['Iran', 9386], ['Italy', 26], ['Ivory Coast', 3], ['Laos', 166], ['Madagascar', 43], ['Malaysia', 116], ['Mexico', 240], ['Myanmar', 9], ['Nepal', 5], ['Netherlands', 10], ['Nigeria', 6], ['Pakistan', 1], ['Palestine', 6], ['Panama', 4], ['Paraguay', 13], ['Peru', 14], ['Republic of the Congo', 8], ['Serbia', 17], ['Sierra Leone', 12], ['Spain', 5], ['Taiwan', 5], ['Thailand', 100], ['Turkey', 1], ['United States of America', 1], ['Vietnam', 538], ['taiwan island', 754] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=25932', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 58, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);