function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 4], ['Biodiversity Data Journal', 37], ['Birkhaeuser Verlag', 8], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 3], ['Botanical Journal of the Linnean Society, Bot.', 9], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 22], ['Candollea', 18], ['Info Flora Schweiz', 6], ['Laurentius Salvius', 22], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 7], ['Order out of Chaos. Linnaean Plant Types and their Types', 47], ['Papéis Avulsos de Zoologia', 8], ['PhytoKeys', 38], ['Phytotaxa', 58], ['Zootaxa', 8], ['Other (15)', 25] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=320)', 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);