function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Romaniae', 60], ['African Invertebrates', 51], ['Biodiversity Data Journal', 4], ['European Journal of Taxonomy', 7], ['Geodiversitas', 24], ['Insecta Mundi', 230], ['Journal of Systematic Palaeontology', 23], ['Palaeontologia Electronica', 211], ['Phytotaxa', 21], ['Quarterly Journal of Microscopical Science', 8], ['Quarterly journal of microscopical science, n. s.', 57], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 17], ['Reports of Science Research Voyage of H. M. S. Challenger. Zoology', 11], ['Revue de Paléobiologie', 39], ['Zootaxa', 126], ['Other (15)', 22] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=911)', 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);