function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Societe Entomologique de Belgique', 20], ['Annales de la Société Entomologique de France', 9], ['Biodiversity Data Journal', 9], ['British Museum', 63], ['Bulletin de la Société Entomologique de France', 5], ['Deutsche Entomologische Zeitschrift', 6], ['Histoire Physique, Naturelle et Politique de Madagascar.', 6], ['Journal of the Proceedings of the Linnean Society of London, Zoology', 29], ['Madras Journal of Literature and Science', 8], ['Memoires de l\'Institut Francais d\'Afrique Noire', 13], ['Revue de Zoologie Africaine', 5], ['Transactions of the Entomological Society of London', 8], ['Verhandlungen der Zoologisch-Botanischen Gesellschaft in Wien', 6], ['ZooKeys', 6], ['Zootaxa', 29], ['Other (28)', 48] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=270)', 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);