function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bolletino della Società Adriatica di Scienze Naturali in Trieste', 23], ['Bulletin de la Société Philomathique de Paris, Série 7', 9], ['Centralblatt für Bakteriologie, Parasitenkunde und Infektionskrankheiten', 8], ['European Journal of Taxonomy', 12], ['Journal of Natural History', 95], ['Megataxa', 10], ['Proceedings of the Royal Society of Edinburgh, Section B (Biology)', 19], ['Proceedings of the United States National Museum, 3', 13], ['Report on the Scientific Results of the Voyage of H. M. S. Challenger During the Years 1873 – 76, Zoology', 24], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 15], ['Sumtibus Augusti Rücker', 26], ['United States Fish Commission Bulletin for 1899', 9], ['Zoologische Jahrbucher, Abteilung für Systematik', 10], ['Zoosystema', 49], ['Zootaxa', 269], ['Other (75)', 157] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=748)', 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);