function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Advances in ant systematics (Hymenoptera: Formicidae): Homage to E. O. Wilson - 50 years of contributions.', 2], ['Annales de la Societe Entomologique de Belgique', 6], ['Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances', 2], ['Arthropod fauna of the UAE', 5], ['Biodiversity Data Journal', 14], ['Egyptian Journal of Natural History', 3], ['European Journal of Taxonomy', 3], ['Histoire Physique, Naturelle et Politique de Madagascar.', 4], ['Journal of Natural History', 5], ['Memoirs of the Myrmecological Society of Japan', 3], ['Myrmecologische Nachrichten', 11], ['Proceedings of the Institute of Zoology', 3], ['ZooKeys', 5], ['Zoosystema', 4], ['Zootaxa', 54], ['Other (9)', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=137)', 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);