function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Polonica', 2], ['Australian Systematic Botany', 44], ['Beiträge Zur Entomologie = Contributions to Entomology', 2], ['Cryptogamie, Algologie', 1], ['Geodiversitas', 18], ['Info Flora Schweiz', 38], ['Insecta Mundi', 1], ['Journal of Systematic Palaeontology', 11], ['Order out of Chaos. Linnaean Plant Types and their Types', 3], ['PhytoKeys', 5], ['Phytotaxa', 44], ['Zoological Journal of the Linnean Society', 1], ['Zootaxa', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=171)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);