function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 2], ['Biodiversity Data Journal', 3], ['European Journal of Taxonomy', 19], ['Invertebrate Biology', 1], ['Journal of Natural History', 28], ['Pacific Science', 2], ['Proceedings of the Zoological Society of London', 3], ['Revue Suisse de Zoologie', 10], ['Scientia Marina', 6], ['Verlag von Wilhelm Engelmann', 11], ['ZooKeys', 18], ['Zoological Journal of the Linnean Society', 20], ['Zoological Science', 2], ['Zoosystema', 2], ['Zootaxa', 835], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=965)', 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);