function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 21], ['Birkhaeuser Verlag', 2], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 6], ['Brittonia', 1], ['Candollea', 1], ['Check List', 2], ['Feddes Repertorium Specierum Novarum Regni Vegetabilis, Beihefte', 1], ['Flora Helvetica', 1], ['Info Flora Schweiz', 1], ['Journal of Botany, British and Foreign, London', 1], ['Kew Bulletin', 1], ['Notizblatt des Königlichen Botanischen Gartens und Museums zu Berlin', 1], ['Order out of Chaos. Linnaean Plant Types and their Types', 5], ['Phytotaxa', 25], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=73)', 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);