function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 15], ['Bijdragen tot de Flora van Nederlandsch Indie', 8], ['Biodiversity Data Journal', 4], ['Birkhaeuser Verlag', 4], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 20], ['Brittonia', 11], ['Candollea', 17], ['Feddes Repertorium Specierum Novarum Regni Vegetabilis, Beihefte', 2], ['Flora Helvetica', 3], ['Hooker\'s Journal of Botany and Kew Garden Miscellany', 2], ['Info Flora Schweiz', 4], ['Notizblatt des Königlichen Botanischen Gartens und Museums zu Berlin', 7], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 6], ['Order out of Chaos. Linnaean Plant Types and their Types', 17], ['Phytotaxa', 3], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=126)', 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);