function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['African Invertebrates', 5], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Beiträge Zur Entomologie = Contributions to Entomology', 1], ['Biodiversity Data Journal', 44], ['Bulletin of the National Museum of Nature and Science, Series A (Zoology)', 13], ['Bulletin of the National Science Museum, Series A (Zoology)', 5], ['Deutsche Entomologische Zeitschrift', 14], ['Entomologische Berichte Luzern', 1], ['Entomologische Zeitschrift', 5], ['Japanese Journal of Systematic Entomology', 1], ['Journal of Asia-Pacific Biodivesity', 3], ['Journal of Hymenoptera Research', 19], ['Linzer biologische Beiträge', 82], ['Trustees of the British Museum', 3], ['Zootaxa', 39], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=238)', 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);