function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acarologia', 2], ['African Invertebrates', 70], ['Biodiversity Data Journal', 4], ['Bulletin de la Société Impériale des Naturalistes de Moscou', 5], ['Check List', 3], ['European Journal of Taxonomy', 260], ['Insecta Mundi', 25], ['Linzer biologische Beiträge', 3], ['Memoirs of Museum Victoria', 4], ['Papéis Avulsos de Zoologia', 24], ['Raffles Bulletin of Zoology', 5], ['Revue suisse de Zoologie', 82], ['ZooKeys', 58], ['Zoosystema', 32], ['Zootaxa', 421], ['Other (7)', 9] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1007)', 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);