function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien', 5], ['Annales de la Societe Entomologique de Belgique', 6], ['Annales de la Société Entomologique de France', 3], ['Biodiversity Data Journal', 16], ['Bollettino della Societa Entomologica Italiana', 4], ['British Museum', 8], ['Bulletin et Annales de la Societe Entomologique de Belge', 2], ['Bulletin of the American Museum of Natural History', 6], ['Histoire Physique, Naturelle et Politique de Madagascar.', 3], ['Journal of the Proceedings of the Linnean Society of London, Zoology', 4], ['Memoires de l\'Institut Francais d\'Afrique Noire', 3], ['Mitteilungen der Schweizerischen Entomologischen Gesellschaft', 4], ['Revista de Entomologia', 2], ['Revue de Zoologie Africaine', 22], ['Voyage de Ch. Alluaud et R. Jeannel en Afrique Orientale (1911 - 1912). Résultats scientifiques. Hyménoptères', 4], ['Other (10)', 11] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=103)', 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);