function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Zoologica Academiae Scientiarum Hungaricae', 7], ['Annalen des Naturhistorischen Museums in Wien', 4], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 18], ['Bollettino del Laboratoria di Zoologia Generale e Agraria della R. Scuola sup. d\'Agricoltura, Portici', 4], ['Bulletin of the British Arachnological Society', 12], ['Eos, Revista Española de Entomología', 6], ['Mitteilungen aus dem Zoologischen Museum in Berlin', 6], ['Prirodoslovna Istraživanja Kraljevine Jugoslavije', 5], ['Revue suisse de Zoologie', 9], ['Revue suisse de zoologie', 5], ['Studien aus dem Gebiete der Allgemeinen Karstforschung, der Wissenschaftlichen Höhlenkunde, der Eiszeitforschung und den Nachbar', 48], ['Subterranean Biology', 7], ['ZooKeys', 7], ['Zoologische Jahrbücher, Abteilung für Systematik, Ökologie und Geographie der Tiere', 12], ['Zootaxa', 84], ['Other (54)', 100] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=334)', 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);