function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 1], ['Acta Palaeontologica Romaniae', 28], ['African Invertebrates', 5], ['Bulletin de la Société Géologique de France', 1], ['Carnets de Géologie [Notebooks on Geology]', 1], ['Cretaceous research', 1], ['Deterville', 1], ['F. Schoell', 1], ['Geodiversitas', 16], ['Palaeontologia Electronica', 58], ['Quarterly Journal of Microscopical Science', 7], ['Quarterly journal of microscopical science, n. s.', 12], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 3], ['Reports of Science Research Voyage of H. M. S. Challenger. Zoology', 21], ['Zootaxa', 71], ['Other (10)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=237)', 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);