function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 2], ['African Invertebrates', 48], ['Biodiversity Data Journal', 4], ['Carnets de Géologie [Notebooks on Geology]', 2], ['European Journal of Taxonomy', 4], ['Geodiversitas', 22], ['Journal of Natural History', 2], ['Journal of Systematic Palaeontology', 23], ['Palaeontologia Electronica', 149], ['Phytotaxa', 14], ['Quarterly Journal of Microscopical Science', 8], ['Quarterly journal of microscopical science, n. s.', 31], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 12], ['Revue de Paléobiologie', 19], ['Zootaxa', 105], ['Other (10)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=455)', 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);