function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 34], ['Biodiversity Data Journal', 12], ['Bulletin de la Société Impériale des Naturalistes de Moscou', 5], ['Caucasian Entomological Bulletin', 5], ['Entomologist\'s monthly magazine', 4], ['Far Eastern Entomologist', 10], ['Insecta Mundi', 521], ['Japanese Journal of Systematic Entomology', 5], ['Karl Schaumburg und Comp.', 4], ['Linzer biologische Beiträge', 14], ['Mémoires du Muséum national d\'Histoire naturelle', 24], ['The Coleopterists Bulletin', 27], ['ZooKeys', 8], ['Zoosystema', 4], ['Zootaxa', 338], ['Other (10)', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1029)', 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);