function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 130], ['Adansonia: Recueil d\'Observations Botaniques', 3], ['Biodiversity Data Journal', 4], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 13], ['Candollea', 3], ['European Journal of Taxonomy', 124], ['Fossil Imprint', 3], ['Kew Bulletin', 8], ['Laurentius Salvius', 9], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 5], ['Order out of Chaos. Linnaean Plant Types and their Types', 12], ['PhytoKeys', 435], ['Phytotaxa', 77], ['Zoosystema', 4], ['Zootaxa', 22], ['Other (12)', 18] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=870)', 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);