function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 8], ['Annalen des Naturhistorischen Museums in Wien', 1], ['Biodiversity Data Journal', 41], ['Birkhaeuser Verlag', 18], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 1], ['Candollea', 1], ['European Journal of Taxonomy', 2], ['Flora Helvetica', 14], ['Info Flora Schweiz', 21], ['Journal of the Arnold Arboretum', 1], ['Linzer biologische Beiträge', 3], ['Order out of Chaos. Linnaean Plant Types and their Types', 42], ['PhytoKeys', 2], ['Phytotaxa', 21], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=181)', 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);