function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Biologica Universitatis Daugavpiliensis', 4], ['Acta Entomologica Musei Nationalis Pragae', 36], ['Amurian Zoological Journal', 3], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 2], ['Biodiversity Data Journal', 4], ['European Journal of Entomology', 3], ['Fragmenta entomologica', 2], ['Insecta Mundi', 10], ['Journal of the Royal Society of New Zealand', 5], ['Linzer biologische Beiträge', 2], ['Memoirs of the Faculty of Education, Kagawa University', 2], ['Méquignon-Marvis', 3], ['Revue et Magasin de Zoologie', 3], ['ZooKeys', 8], ['Zootaxa', 78], ['Other (6)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=172)', 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);