function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['American Museum Novitates', 12], ['Annalen des Naturhistorischen Museums in Wien', 11], ['Annales de la Société Entomologique de France, Séries 1 - 6', 30], ['Annali del Museo Civico di Storia Naturale di Genova', 21], ['Bauer und Raspe', 9], ['Bulletin de la Société Zoologique de France', 6], ['Eos, Revista Española de Entomología', 7], ['Mitteilungen aus dem Naturhistorischen Museum in Hamburg', 15], ['Mitteilungen aus dem Zoologischen Museum in Berlin', 14], ['Mémoires du Muséum National d’Histoire Naturelle', 9], ['Oversigt over det Kongelige Danske Videnskabernes Selskabs Forhandlinger', 12], ['Privately published', 15], ['Transactions of the Zoological Society of London', 13], ['Zoologischer Anzeiger', 8], ['Zootaxa', 47], ['Other (92)', 179] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=408)', 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);