function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 42], ['Biodiversity Data Journal', 44], ['Birkhaeuser Verlag', 20], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 22], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 6], ['Brittonia', 5], ['Check List', 12], ['Feddes Repertorium Specierum Novarum Regni Vegetabilis, Beihefte', 10], ['Flora Helvetica', 13], ['Info Flora Schweiz', 21], ['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', 6], ['Order out of Chaos. Linnaean Plant Types and their Types', 17], ['PhytoKeys', 6], ['Phytotaxa', 167], ['Other (18)', 26] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=422)', 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);