function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 6], ['Biodiversity Data Journal', 29], ['Birkhaeuser Verlag', 2], ['Blumea - Biodiversity, Evolution and Biogeography of Plants', 1], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 1], ['Bulletin de la Société Philomathique de Paris, Série 7', 1], ['Bulletin du Départment de L\'Agriculture aux Indes Néerlandaises', 2], ['Bulletin of Miscellaneous Information (Royal Gardens Kew)', 1], ['Flora Helvetica', 1], ['Info Flora Schweiz', 1], ['Laurentius Salvius', 3], ['Order out of Chaos. Linnaean Plant Types and their Types', 19], ['PhytoKeys', 20], ['Phytotaxa', 47], ['Raffles Bulletin of Zoology', 2], ['Other (7)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=143)', 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);