function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Parasitologica', 1], ['Acta Zootaxonomica Sinica', 1], ['Agricultural Publishing House', 1], ['Biodiversity Data Journal', 2], ['Bulletin of Marine Science', 1], ['Bulletin of the National Science Museum, Series A, Zoology', 1], ['Indian Journal of Helminthology', 1], ['Journal of Fujian Teachers University (Natural Science)', 1], ['Keigaku Publishing Company', 1], ['Norwegian Journal of Zoology', 1], ['Parazitologiya', 1], ['Proceedings of the Helminthological Society of Washington', 1], ['Revista Ibérica de Parasitología', 2], ['Scientific Survey of Porto Rico and the Virgin Islands', 2], ['Tulane Studies in Zoology', 5], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=27)', 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);