function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 1], ['Bijdragen tot de Flora van Nederlandsch Indie', 7], ['Biodiversity Data Journal', 3], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 5], ['Brittonia', 1], ['Check List', 2], ['Feddes Repertorium Specierum Novarum Regni Vegetabilis, Beihefte', 1], ['Gardens\' Bulletin (Singapore)', 1], ['Journal of Botany, British and Foreign, London', 1], ['Notizblatt des Königlichen Botanischen Gartens und Museums zu Berlin', 3], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 1], ['Order out of Chaos. Linnaean Plant Types and their Types', 3], ['PhytoKeys', 2], ['Phytotaxa', 41] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=74)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);