function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 811], ['Algeria', 0], ['Angola', 2], ['Armenia', 0], ['Australia', 1], ['Cameroon', 7], ['China', 11], ['Cyprus', 0], ['Democratic Republic of the Congo', 14], ['Egypt', 2], ['Equatorial Guinea', 1], ['Ethiopia', 15], ['France', 2], ['Gabon', 2], ['Gambia', 0], ['Georgia', 1], ['Ghana', 1], ['Greece', 1], ['Guinea-Bissau', 4], ['India', 6], ['Indonesia', 39], ['Iran', 3], ['Israel', 2], ['Italy', 2], ['Ivory Coast', 4], ['Japan', 3], ['Kenya', 12], ['Liberia', 2], ['Libya', 1], ['Malaysia', 2], ['Mauritania', 0], ['Morocco', 2], ['Mozambique', 1], ['Myanmar', 2], ['Nigeria', 5], ['Oman', 1243], ['Pakistan', 0], ['Philippines', 7], ['Russia', 2], ['Sao Tome and Principe', 0], ['Senegal', 2], ['Somalia', 2], ['South Africa', 3], ['South Korea', 1], ['Spain', 1], ['Sri Lanka', 3], ['Sudan', 3], ['Taiwan', 1], ['Tajikistan', 1], ['Tanzania', 14], ['Thailand', 577], ['Togo', 1], ['Tunisia', 0], ['Turkey', 1], ['Uganda', 9], ['United States of America', 0], ['Vietnam', 9], ['Western Sahara', 0], ['Zambia', 3], ['principe island', 1], ['sao tome island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=2846', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 61, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);