function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Parasitologica Polonica', 3], ['Acta Zootaxonomica Sinica', 3], ['Biodiversity Data Journal', 3], ['Indian Journal of Veterinary Science', 3], ['Japanese Journal of Zoology', 6], ['Journal of Parasitology', 5], ['Keigaku Publishing Company', 9], ['Papers from the Tortugas Laboratory of the Carnegie Institute of Washington', 4], ['Proceedings of the Helminthological Society of Washington', 8], ['Rivista di Parassitologia', 4], ['SatyĆ» Yamaguti', 5], ['Science Press', 4], ['Studia Marina Sinica', 4], ['Systematic Parasitology', 10], ['Zoologicheskii Zhurnal', 4], ['Other (59)', 82] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=157)', 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);