function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Palaeontologica Romaniae', 3], ['Biodiversity Data Journal', 20], ['Birkhaeuser Verlag', 4], ['Bulletin of the American Museum of Natural History', 1], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 7], ['Flora Helvetica', 8], ['Fossil Imprint', 33], ['Geodiversitas', 4], ['Info Flora Schweiz', 14], ['Insecta Mundi', 6], ['Linzer biologische Beiträge', 11], ['Order out of Chaos. Linnaean Plant Types and their Types', 18], ['PhytoKeys', 4], ['Phytotaxa', 7], ['Zootaxa', 3], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=145)', 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);