function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Akademiia Nauk SSSR, Trudy P. P. Shirshov Instytut Okeanologii', 2], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 1], ['Anzeiger', 1], ['Archiv für Fischereiwissenschaft', 2], ['Bulletin of the Bingham Oceanographic Collection Yale University', 1], ['Copeia', 1], ['Cybium', 1], ['European Journal of Taxonomy', 4], ['Giornale di Scienze, Lettere ed Arti per la Sicilia', 1], ['Proceedings of the United States National Museum, 3', 7], ['The West American Scientist', 2], ['Videnskabelige Meddelelser frå Dansk Naturhistorisk Forening', 6], ['Zitteliana', 2], ['Zoologischer Anzeiger', 2], ['Zootaxa', 9], ['Other (6)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=48)', 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);