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 ', 1], ['Archives de Zoologie Expérimentale et Générale: Hitorire Naturelle, Morphologie, Histologie, Évolution des Animaux, Série 3', 1], ['Biodiversity Data Journal', 3], ['Geodiversitas', 2], ['Journal of Natural History', 12], ['Monatsberichte der Königlich Preussischen Akademie des Wissenschaften zu Berlin', 1], ['Pacific Science', 5], ['Phytochemistry', 2], ['Phytotaxa', 1], ['Proceedings of the Essex Institute (Communications)', 1], ['Records of the Australian Museum', 43], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger during the Years 1873 – 76, Zoology', 2], ['ZooKeys', 41], ['Zootaxa', 29] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=144)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);