function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Abhandlungen herausgegeben von der Senckenbergischen Naturforschenden Gesellschaft', 1], ['Annales de la Société Entomologique de France', 3], ['Biodiversity Data Journal', 4], ['Bulletin et Annales de la Societe Entomologique de Belge', 3], ['Bulletin of the American Museum of Natural History', 7], ['Histoire Physique, Naturelle et Politique de Madagascar.', 5], ['Histoire physique, naturelle et politique de Madagascar. 20.', 1], ['Memoires de l\'Institut Francais d\'Afrique Noire', 5], ['Mitteilungen der Schweizerischen Entomologischen Gesellschaft', 2], ['Proceedings of the Royal Society of Victoria', 6], ['Revista de Entomologia', 1], ['Revue Suisse de Zoologie', 1], ['Sociobiology', 14], ['Verhandlungen der Zoologisch-Botanischen Gesellschaft in Wien', 2], ['Zootaxa', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=57)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);