function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annalen des Naturhistorischen Museums in Wien', 1], ['Biodiversity Data Journal', 4], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 1], ['European Journal of Taxonomy', 1], ['Harvard Papers in Botany', 1], ['Insecta Mundi', 2], ['Journal of the Arnold Arboretum', 4], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 2], ['Order out of Chaos. Linnaean Plant Types and their Types', 3], ['Transactions of the Linnean Society of London, Second Series. Botany', 1], ['Zoosystema', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=21)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);