function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 7], ['Bijdragen tot de Flora van Nederlandsch Indie', 2], ['Biodiversity Data Journal', 13], ['Birkhaeuser Verlag', 2], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 1], ['Candollea', 35], ['Denkschriften der Schweizerischen Naturforschenden Gesellschaft', 5], ['Flora Helvetica', 1], ['Info Flora Schweiz', 1], ['Insecta Mundi', 3], ['Journal of the Arnold Arboretum', 5], ['Kew Bulletin', 2], ['Laurentius Salvius', 5], ['Order out of Chaos. Linnaean Plant Types and their Types', 8], ['Phytotaxa', 12], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=104)', 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);