function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 82], ['Birkhaeuser Verlag', 36], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 84], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 36], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 20], ['Flora Helvetica', 32], ['Info Flora Schweiz', 37], ['Laurentius Salvius', 72], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 31], ['Order out of Chaos. Linnaean Plant Types and their Types', 128], ['PhytoKeys', 42], ['Phytotaxa', 110], ['Reinwardtia', 61], ['Transactions of the Linnean Society of London, Second Series. Botany', 15], ['Zootaxa', 125], ['Other (30)', 114] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1025)', 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);