function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Société Impériale d\'Agriculture, Histoire Naturelle de Lyon', 1], ['Cybium', 1], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien', 1], ['European Journal of Taxonomy', 4], ['Ichthyological Bulletin of the J. L. B. Smith Institute of Ichthyology', 2], ['Natuurkunde Tijdschrift voor Nederlandsche-Indië', 1], ['Order out of Chaos. Linnaean Plant Types and their Types', 1], ['Proceedings of the United States National Museum, 3', 1], ['Proceedings of the Zoological Acclimatisation Society of Victoria', 1], ['Proceedings of the Zoological Society of London, B', 1], ['Revista Chilena de Historia Natural', 1], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 1], ['Zootaxa', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=30)', 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);