function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 10], ['Biodiversity Data Journal', 33], ['Birkhaeuser Verlag', 154], ['Candollea', 23], ['Check List', 5], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 98], ['Flora Helvetica', 144], ['Flora der Schweiz und angrenzender Gebiete. Band 1. Pteridophyta bis Caryophyllaceae (2 nd edition)', 26], ['Info Flora Schweiz', 187], ['Journal of Species Research', 4], ['Laurentius Salvius', 154], ['Linzer biologische Beiträge', 18], ['Order out of Chaos. Linnaean Plant Types and their Types', 217], ['PhytoKeys', 162], ['Phytotaxa', 230], ['Other (10)', 17] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1482)', 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);