function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Biologica Sibirica', 10], ['Annales du Museum National d\'Historie Naturelle, Paris', 1], ['Biodiversity Data Journal', 23], ['Birkhaeuser Verlag', 20], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Candollea', 1], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 34], ['Flora Helvetica', 23], ['Fossil Imprint', 2], ['Info Flora Schweiz', 25], ['Laurentius Salvius', 12], ['Linzer biologische Beiträge', 1], ['Order out of Chaos. Linnaean Plant Types and their Types', 12], ['Phytotaxa', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=170)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);