function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 1], ['Bijdragen tot de Flora van Nederlandsch Indie', 5], ['Biodiversity Data Journal', 12], ['Birkhaeuser Verlag', 3], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 1], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 6], ['Candollea', 10], ['Check List', 2], ['Flora Helvetica', 2], ['Info Flora Schweiz', 2], ['Notizblatt des Königlichen Botanischen Gartens und Museums zu Berlin', 3], ['Order out of Chaos. Linnaean Plant Types and their Types', 2], ['Philippine Journal of Science C. Botany, Section C, Botany', 2], ['PhytoKeys', 5], ['Phytotaxa', 55], ['Other (5)', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=116)', 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);