function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 1290], ['Argentina', 45], ['Argentina, Chile, Paraguay', 1], ['Azerbaijan', 86], ['Bahamas', 437], ['Bolivia', 1], ['Chile', 16], ['China', 13], ['Colombia', 4], ['Democratic Republic of the Congo', 5], ['Democratic Republic of the Congo, Ecuador', 1], ['Democratic Republic of the Congo, Uganda, Kenya, Tanzania, Sudan', 1], ['Ecuador', 1], ['Fiji', 1], ['France', 7], ['India', 5], ['Iran', 14], ['Italy', 2], ['Ivory Coast', 1], ['Japan', 3], ['Kazakhstan', 1], ['Kenya', 1], ['Lesotho', 9], ['Liberia', 24], ['Madagascar', 3], ['Malaysia', 3], ['Mongolia', 3], ['Mozambique', 1], ['Namibia', 1], ['New Zealand', 3], ['Nigeria', 1], ['Oman', 2], ['Pakistan', 3], ['Paraguay', 36], ['Poland', 1], ['Puerto Rico', 6], ['Russia', 2], ['Rwanda', 3], ['RĂ©union', 2], ['Saint Helena, Ascension and Tristan da Cunha', 10], ['Sao Tome and Principe', 1], ['Seychelles', 2], ['Sierra Leone', 4], ['South Africa', 164], ['South Korea', 13], ['South Sudan', 1], ['Sri Lanka', 3], ['Sudan', 4], ['Taiwan', 1], ['Tajikistan', 2], ['Tanzania', 1], ['Turkey', 5], ['Uganda', 9], ['United States of America', 22], ['Vietnam', 9], ['Virgin Islands', 2], ['Yemen', 7], ['Zambia', 14], ['salvador island', 0], ['st. helena island.', 7] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2320', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 60, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);