function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales de la Societe Entomologique de Belgique', 12], ['Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances', 2], ['Arthropod fauna of the UAE', 6], ['Asian Myrmecology', 6], ['Beiträge Zur Entomologie = Contributions to Entomology', 3], ['Biodiversity Data Journal', 12], ['Egyptian Journal of Natural History', 4], ['European Journal of Taxonomy', 2], ['Myrmecologische Nachrichten', 14], ['Proceedings of the Institute of Zoology', 4], ['Revue de Zoologie et de Botanique Africaines', 5], ['Revue suisse de Zoologie', 7], ['ZooKeys', 8], ['Zoosystema', 4], ['Zootaxa', 10], ['Other (7)', 9] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=108)', 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);