function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Malacological Bulletin', 3], ['Annali delle scienze del Regno Lombardo-Veneto', 1], ['Bernice P. Bishop Museum Bulletin', 1], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 1], ['Bulletin of the National Science Museum, Series A (Zoology)', 3], ['European Journal of Taxonomy', 9], ['Ferdinand Dümmler', 1], ['Johan. Christi. Trappii', 2], ['Journal of the Academy of Natural Sciences of Philadelphia', 5], ['Nautilus', 5], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 11], ['ZooKeys', 4], ['Zoosystema', 4], ['Zootaxa', 22], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=79)', 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);