function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 221], ['Biodiversity Data Journal', 372], ['Birkhaeuser Verlag', 103], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 100], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 55], ['Candollea', 65], ['Check List', 101], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 91], ['European Journal of Taxonomy', 55], ['Flora Helvetica', 77], ['Info Flora Schweiz', 105], ['Linzer biologische Beiträge', 53], ['Order out of Chaos. Linnaean Plant Types and their Types', 226], ['PhytoKeys', 353], ['Phytotaxa', 1136], ['Other (57)', 487] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=3600)', 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);