function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 20], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 20], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 33], ['Bulletin du Jardin Botanique de Buitenzorg, Série 2', 22], ['Gardens\' Bulletin (Singapore)', 4], ['J. Cramer', 6], ['Journal für den Orchideenfreund', 7], ['Lankesteriana', 17], ['Nordic Journal of Botany', 40], ['Notizblatt des Königlichen Botanischen Gartens und Museums zu Berlin', 48], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 28], ['Orchid Monographs', 26], ['PhytoKeys', 6], ['Phytotaxa', 128], ['Transactions of the Linnean Society of London, Second Series. Botany', 15], ['Other (13)', 21] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=441)', 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);