function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien', 9], ['Annales de la Societe Entomologique de Belgique', 23], ['Annales de la Société Entomologique de France', 9], ['Berliner Entomologische Zeitschrift', 10], ['Biodiversity Data Journal', 20], ['British Museum', 59], ['Bulletin of the American Museum of Natural History', 19], ['Journal of the Proceedings of the Linnean Society of London, Zoology', 65], ['Memoires de l\'Institut Francais d\'Afrique Noire', 11], ['Memoirs of the American Entomological Institute', 37], ['Proceedings of the Royal Society of Victoria', 16], ['Revue de Zoologie Africaine', 13], ['Verhandlungen der Zoologisch-Botanischen Gesellschaft in Wien', 23], ['Voyage de Ch. Alluaud et R. Jeannel en Afrique Orientale (1911 - 1912). Résultats scientifiques. Hyménoptères', 15], ['Zootaxa', 54], ['Other (21)', 51] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=434)', 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);