function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Biologica Sibirica', 12], ['Annales du Museum National d\'Historie Naturelle, Paris', 1], ['Biodiversity Data Journal', 24], ['Birkhaeuser Verlag', 22], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 2], ['Candollea', 1], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 60], ['Flora Helvetica', 25], ['Info Flora Schweiz', 27], ['Journal of Natural History', 1], ['Laurentius Salvius', 12], ['Linzer biologische Beiträge', 1], ['Order out of Chaos. Linnaean Plant Types and their Types', 13], ['PhytoKeys', 1], ['Phytotaxa', 5], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=208)', 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);