function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Allan Hancock Pacific Expeditions', 4], ['Angewandte Parasitologie', 3], ['Helminthologia', 3], ['Indian Journal of Helminthology', 2], ['Izvestiya Tikhookeanskogo Nauchno-Issledovatel\'skogo Instituta Rybnogo Khozyaistva i Okeanografii (TINRO)', 2], ['Journal of Parasitology', 3], ['Journal of helminthology', 4], ['Journal of the Faculty of Education, Ain Shams University', 2], ['Keigaku Publishing Company', 8], ['Papers from the Tortugas Laboratory of the Carnegie Institute of Washington', 2], ['Proceedings of the Helminthological Society of Washington', 2], ['Rivista di Parassitologia', 11], ['Systematic Parasitology', 10], ['Tulane Studies in Zoology', 3], ['Zootaxa', 3], ['Other (25)', 31] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=93)', 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);