function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien', 1], ['Biodiversity Data Journal', 3], ['Birkhaeuser Verlag', 26], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 1], ['Candollea', 5], ['Check List', 2], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 10], ['Flora Helvetica', 24], ['Flora der Schweiz und angrenzender Gebiete. Band 1. Pteridophyta bis Caryophyllaceae (2 nd edition)', 26], ['Info Flora Schweiz', 27], ['Laurentius Salvius', 14], ['Linzer biologische Beiträge', 4], ['Order out of Chaos. Linnaean Plant Types and their Types', 14], ['PhytoKeys', 1], ['Phytotaxa', 19] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=177)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);