function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 12], ['Annalen des Naturhistorischen Museums in Wien', 1], ['Biodiversity Data Journal', 1], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 20], ['Candollea', 7], ['Edinburgh Journal of Botany', 89], ['European Journal of Taxonomy', 192], ['Journal of the Arnold Arboretum', 3], ['Kristen Press', 1], ['Linzer biologische Beiträge', 1], ['Order out of Chaos. Linnaean Plant Types and their Types', 1], ['PhytoKeys', 39], ['Phytotaxa', 124], ['Taylor & Francis', 1], ['Transactions of the Linnean Society of London, Second Series. Botany', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=499)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);