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], ['Archiv für Molluskenkunde', 36], ['Bernice P. Bishop Museum Bulletin', 19], ['Biodiversity Data Journal', 1], ['Bulletins de la Société Malacologique de France', 4], ['Contributions to Zoology', 30], ['European Journal of Taxonomy', 7], ['Journal of Natural History', 18], ['Memoirs of the Queensland Museum, Nature', 1], ['Proceedings of the Malacological Society of London', 3], ['Raffles Bulletin of Zoology', 4], ['Records of the Australian Museum', 2], ['ZooKeys', 28], ['Zootaxa', 51] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=210)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);