function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 14], ['Botanical Magazine Tokyo', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 12], ['Brittonia', 1], ['Bulletin of Miscellaneous Information (Royal Gardens Kew)', 1], ['Journal of the Arnold Arboretum', 11], ['Order out of Chaos. Linnaean Plant Types and their Types', 1], ['PhytoKeys', 1], ['Phytotaxa', 4], ['Repertorium Specierum Novarum Regni Vegetabilis', 1], ['SIDA, Contributions to Botany', 2], ['Taylor & Francis', 1], ['Transactions of the Linnean Society of London, Second Series. Botany', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=54)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);