function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['ADansonia, Sér. 3', 6], ['Adansonia', 8], ['Biodiversity Data Journal', 13], ['Birkhaeuser Verlag', 3], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 34], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 4], ['Bulletin du Jardin Botanique de Buitenzorg, Série 2', 3], ['Insecta Mundi', 4], ['Laurentius Salvius', 4], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 13], ['Order out of Chaos. Linnaean Plant Types and their Types', 13], ['PhytoKeys', 5], ['Phytotaxa', 5], ['Reinwardtia', 58], ['Transactions of the Linnean Society of London, Second Series. Botany', 8], ['Other (16)', 26] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=207)', 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);