function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Australian Systematic Botany', 6], ['Birkhaeuser Verlag', 14], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 1], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 9], ['Flora Helvetica', 13], ['Info Flora Schweiz', 16], ['Laurentius Salvius', 6], ['Linzer biologische Beiträge', 3], ['Order out of Chaos. Linnaean Plant Types and their Types', 4], ['PhytoKeys', 2], ['Phytotaxa', 7], ['Vegetatio', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=82)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);