function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 4], ['Annals of the Lyceum of Natural History of New York', 1], ['Bulletin de la Société des Études Indochinoises', 1], ['Bulletin of the Los Angeles County Museum of Natural History Science', 1], ['Bulletin of the National Museum of Nature and Science, Series A (Zoology)', 1], ['Monatsberichte der Akademie der Wissenschaft zu Berlin', 1], ['Mémoires de la Société Imperial des Sciences Naturelles Cherbourg', 1], ['Proceedings of the United States National Museum, 3', 1], ['Proceedings of the Zoological Acclimatisation Society of Victoria', 1], ['Report of the British Association for the Advancement of Science', 2], ['Report of the United States Commissioner of Fish and Fisheries', 1], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 1], ['Zootaxa', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=18)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);