function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['African Invertebrates', 88], ['Biodiversity Data Journal', 99], ['European Journal of Taxonomy', 78], ['Geodiversitas', 63], ['Journal of Natural History', 238], ['Journal of the Academy of Natural Sciences of Philadelphia', 58], ['Laurentius Salvius', 214], ['Records of the Australian Museum', 170], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 136], ['The Bulletin of the Russian Far East Malacological Society', 129], ['Zitteliana', 55], ['ZooKeys', 198], ['Zoological Journal of the Linnean Society', 97], ['Zoosystema', 280], ['Zootaxa', 610], ['Other (135)', 741] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=3254)', 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);