function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 2], ['Biodiversity Data Journal', 175], ['European Journal of Taxonomy', 31], ['Journal of Natural History', 39], ['Journal of the Marine Biological Association of the United Kingdom', 3], ['Proceedings of the United States National Museum, 3', 6], ['Records of the Australian Museum', 32], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 44], ['Species Diversity', 12], ['Systematics and Biodiversity', 3], ['ZooKeys', 102], ['Zoological Journal of the Linnean Society', 6], ['Zoosystema', 41], ['Zoosystematics and Evolution', 4], ['Zootaxa', 1154], ['Other (14)', 17] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1671)', 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);