function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Parasitologica Polonica', 4], ['African Invertebrates', 1], ['Annales du Musée Royal du Congo Belge, Série 5, Zoologiques', 1], ['Biodiversity Data Journal', 3], ['Bulletin of the Department of Zoology University of the Panjab (New Series)', 1], ['Indian Journal of Helminthology', 1], ['Journal of the Egyptian Society of Parasitology', 1], ['Philippine Journal of Science', 1], ['Proceedings of Parasitology', 1], ['Proceedings of the Indian Academy of Sciences, Section B', 1], ['Revista Cienc vet Lourenco Marques (Ser A)', 1], ['Soobshcheniya Akademii Nauk Gruzinskoi SSR', 2], ['Transactions of the American Microscopical Society', 2], ['Zoologische Jahrbuecher Abteilungen für Systematik', 3], ['Zootaxa', 5], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=30)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);