function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen der Königlichen Akademie der Wissenschaften zu Berlin', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Annals of Natural History; or, Magazine of Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany and Zoo', 1], ['Baldwin, Cradock and Joy', 1], ['Bulletin of the American Museum of Natural History', 1], ['Geodiversitas', 3], ['Handbook of the Mammals of the World – Volume 1 Carnivores', 5], ['Laurentius Salvius', 8], ['Mammal Species of the World (1 st Edition)', 26], ['Mammal Species of the World (2 nd Edition)', 6], ['Mammal Species of the World: a Taxonomic and Geographic Reference (3 rd Edition), Volume 1', 27], ['Mammalian Species', 3], ['Proceedings of the Zoological Society of London', 2], ['Zoosystema', 2], ['Zootaxa', 3], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=93)', 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);