function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales du Muséum d\'Histoire Naturelle, Paris', 3], ['Annals and Magazine of Natural History', 3], ['Biol. Results " Endeavour "', 6], ['Bulletin of the Museum of Comparative Zoology at Harvard College', 7], ['Bulletin of the United States Fish Commission', 5], ['Cybium', 7], ['European Journal of Taxonomy', 3], ['F. Schoell', 6], ['Giornale di Fisica, Chimica e Storia Naturale, Medicina ed Arti, Pavia, ed Arti Pavia', 6], ['Laurentius Salvius', 17], ['Phytotaxa', 3], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 7], ['Proceedings of the United States National Museum, 3', 8], ['Report on the Scientific Results of the Voyage of H. M. S. “ Challenger ” during the Years 1873 - 76 under the Command of Captai', 3], ['Zootaxa', 62], ['Other (45)', 60] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=206)', 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);