function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Angewandte Parasitologie', 1], ['Biologiya Morya (Vladivostok), Vladivostok', 1], ['Bulletin of the Department of Zoology University of the Panjab (New Series)', 1], ['Gidrobiologicheskii Zhurnal', 1], ['Japanese Journal of Zoology', 1], ['Journal of the Faculty of Education, Ain Shams University', 2], ['Keigaku Publishing Company', 1], ['Naukova Dumka', 2], ['Proceedings of the Helminthological Society of Washington', 1], ['Quarterly Journal of the Florida Academy of Sciences', 1], ['Revista de Medicina Veterinaria y Parasitologia', 1], ['Systematic Parasitology', 1], ['Wuyi Science Journal', 1], ['ZooKeys', 1], ['Zoologia', 1], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=18)', 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);