function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Medicinae Okayama', 2], ['Acta Parasitologica Polonica', 1], ['Acta Zoologica Sinica', 1], ['Agricultural Publishing House', 1], ['Biodiversity Data Journal', 1], ['Bulletin of the Zoological Survey of India', 1], ['Indian Journal of Parasitology', 1], ['Journal of the Arab Veterinary and Medical Association', 1], ['Journal of the Egyptian Society of Parasitology', 1], ['Proceedings of the Indian Academy of Sciences, Section B', 1], ['SatyĆ» Yamaguti', 1], ['Science and Technology Press', 2], ['Zoologischer Anzeiger', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=15)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);