function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of the Lyceum of Natural History of New York', 1], ['Annals of the New York Academy of Sciences', 6], ['Anzeiger', 7], ['Blätter für Aquarien- und Terrarien-Kunde', 1], ['Bulletin Musei Zool. Anat. Comp., Torino, 3', 1], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 2], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 1], ['Ind. Univ. Studies', 2], ['Journal of Fish Biology', 3], ['Memoirs of the Carnegie Museum', 2], ['Oversigt over det Kongelige Danske Videnskabernes Selskabs Forhandlinger', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 2], ['Proceedings of the American Philosophical Society', 2], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 4], ['The West American Scientist', 2], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=42)', 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);