function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 6], ['Biodiversity Data Journal', 30], ['Birkhaeuser Verlag', 47], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 6], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 22], ['Flora Helvetica', 40], ['Info Flora Schweiz', 47], ['Laurentius Salvius', 37], ['Mémoires du Muséum national d\'Histoire naturelle', 6], ['Nova Guinea: a journal of botany, zoology, anthropology, ethnography, geology and palaeontology of the Papuan region.', 11], ['Order out of Chaos. Linnaean Plant Types and their Types', 56], ['PhytoKeys', 5], ['Phytochemistry', 10], ['Phytotaxa', 57], ['Transactions of the Linnean Society of London, Second Series. Botany', 4], ['Other (8)', 12] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=396)', 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);