function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 384], ['Biodiversity Data Journal', 79], ['Birkhaeuser Verlag', 41], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 72], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 80], ['Candollea', 90], ['Info Flora Schweiz', 50], ['Journal of the Arnold Arboretum', 49], ['Laurentius Salvius', 74], ['Order out of Chaos. Linnaean Plant Types and their Types', 128], ['Papéis Avulsos de Zoologia', 54], ['PhytoKeys', 350], ['Phytotaxa', 711], ['Revue suisse de Zoologie', 66], ['Zootaxa', 45], ['Other (61)', 299] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=2572)', 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);