function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Zoologica Sinica', 19], ['Acta Zootaxonomica Sinica', 13], ['Agricultural Research Council, Government of Pakistan', 13], ['Indian Journal of Helminthology', 23], ['Japanese Journal of Zoology', 26], ['Journal of Fujian Teachers University (Natural Science)', 14], ['Journal of Parasitology', 17], ['Keigaku Publishing Company', 40], ['Pakistan Journal of Zoology', 13], ['Proceedings of the Helminthological Society of Washington', 26], ['Proceedings of the National Academy of Sciences, India, Section B, Biological Sciences', 16], ['Rivista di Parassitologia', 16], ['SatyĆ» Yamaguti', 17], ['Systematic Parasitology', 13], ['Zoologischer Anzeiger', 13], ['Other (139)', 348] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=627)', 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);