function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 2744], ['Afghanistan', 203], ['American Samoa', 1], ['Argentina', 555], ['Australia', 230], ['Austria', 6], ['Azerbaijan', 4], ['Belgium', 4], ['Bhutan', 4], ['Bolivia', 2915], ['Brazil', 739], ['Brunei', 9], ['Bulgaria', 1], ['Burundi', 7], ['Cameroon', 4], ['Canada', 443], ['Central African Republic', 10], ['Chile', 268], ['China', 10], ['Comoros', 1], ['Costa Rica', 740], ['Czech Republic', 3180], ['Democratic Republic of the Congo', 8], ['Denmark', 2], ['Dominica', 22], ['Dominican Republic', 3], ['Ecuador', 51], ['Estonia', 5], ['Finland', 4027], ['France', 13], ['French Guiana', 119], ['Gabon', 7], ['Georgia', 23], ['Germany', 26], ['Ghana', 252], ['Greece', 4], ['Guatemala', 23], ['Guinea-Bissau', 23], ['Guyana', 11], ['India', 4], ['Indonesia', 1121], ['Israel', 1], ['Italy', 18], ['Ivory Coast', 13], ['Japan', 73], ['Kenya', 11], ['Madagascar', 22], ['Malaysia', 176], ['Mexico', 15], ['Myanmar', 14], ['Nepal', 34], ['New Zealand', 70], ['Nicaragua', 2], ['Nigeria', 22], ['Norway', 17176], ['Panama', 6], ['Papua New Guinea', 62], ['Paraguay', 11], ['Peru', 185], ['Republic of the Congo', 1], ['Russia', 244], ['Saint Vincent and the Grenadines', 17], ['Sao Tome and Principe', 2], ['Slovakia', 4], ['South Africa', 118], ['Spain', 1], ['Sweden', 98], ['Switzerland', 2], ['Taiwan', 10], ['Tanzania', 460], ['Thailand', 45], ['Turkey', 2], ['Uganda', 27], ['United Kingdom', 13], ['United States of America', 586], ['Venezuela', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=37364', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 76, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);