function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Societatis Regiae Scientiarum Indo-Neêrlandicae', 1], ['Annales de la Société Impériale d\'Agriculture, Histoire Naturelle de Lyon', 3], ['Annales des Sciences Naturelles, Zoologie, Série 4', 4], ['Biodiversity Data Journal', 7], ['Bulletin of the National Science Museum, Series A, Zoology', 2], ['Check List', 9], ['European Journal of Taxonomy', 6], ['Laurentius Salvius', 9], ['Privately published', 2], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Proceedings of the Zoological Society of London, B', 3], ['Sanderiano Commissum', 5], ['Schmerber', 2], ['Transactions of the American Philosophical Society', 2], ['Zootaxa', 42], ['Other (26)', 26] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=126)', 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);