function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 2], ['Australian Systematic Botany', 3], ['Biodiversity Data Journal', 17], ['Birkhaeuser Verlag', 11], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 2], ['Candollea', 19], ['Flora Helvetica', 5], ['Fossil Imprint', 4], ['Info Flora Schweiz', 9], ['Insecta Mundi', 7], ['Laurentius Salvius', 18], ['Order out of Chaos. Linnaean Plant Types and their Types', 34], ['PhytoKeys', 12], ['Phytotaxa', 45], ['Zootaxa', 3], ['Other (5)', 6] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=197)', 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);