function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 21], ['Bijdragen tot de Flora van Nederlandsch Indie', 2], ['Biodiversity Data Journal', 10], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 8], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 2], ['Brittonia', 6], ['Check List', 3], ['Kew Bulletin', 18], ['Notizblatt des Königlichen Botanischen Gartens und Museums zu Berlin', 5], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 2], ['Occasional Papers of the Bernice P. Bishop Museum', 4], ['Order out of Chaos. Linnaean Plant Types and their Types', 3], ['Philippine Journal of Science C. Botany, Section C, Botany', 4], ['Phytotaxa', 99], ['University of California Publications in Botany', 2], ['Other (10)', 10] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=199)', 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);