function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['African Invertebrates', 30], ['Benjamin White and Son', 17], ['Biodiversity Data Journal', 33], ['Geodiversitas', 178], ['Journal of Natural History', 21], ['Laurentius Salvius', 26], ['Memoirs of the Queensland Museu Nature', 128], ['Monatsberichte der Königlich Preussischen Akademie des Wissenschaften zu Berlin', 17], ['Raffles Bulletin of Zoology', 58], ['Records of the Australian Museum', 225], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger during the Years 1873 – 76, Zoology', 34], ['Zitteliana', 179], ['ZooKeys', 229], ['Zoological Journal of the Linnean Society', 83], ['Zootaxa', 473], ['Other (45)', 170] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1901)', 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);