function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['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], ['Insecta Mundi', 1], ['Palaeontologia Electronica', 58], ['Phytotaxa', 1], ['Quarterly Journal of Microscopical Science', 4], ['Quarterly journal of microscopical science, n. s.', 10], ['Reports of Science Research Voyage of H. M. S. Challenger. Zoology', 21], ['Zootaxa', 62], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=214)', 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);