function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bocagiana, Funchal', 1], ['Bulletin of Marine Science', 2], ['Bulletin of the Japanese Society of Scientific Fisheries', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 2], ['Doklady Akademiia Nauk SSSR', 1], ['European Journal of Taxonomy', 2], ['Japanese Journal of Ichthyology', 1], ['Marine Investigations in South Africa', 1], ['Proceedings of the United States National Museum, 3', 1], ['Proceedings of the Zoological Society of London, B', 1], ['Résultats Scientifiques de la Expédition Océanographique Belge dans les Eaux Côtieres Africaines de l\'Atlantique Sud (1948 - 194', 1], ['Special Bulletin of the United States National Museum', 1], ['Zootaxa', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=18)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);