function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Adansonia', 42], ['Annales du Jardin Botanique de Buitenzorg.', 1], ['Biodiversity Data Journal', 1], ['Botanical Magazine Tokyo', 1], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 21], ['Journal of the Arnold Arboretum', 14], ['Laurentius Salvius', 3], ['Nova Guinea. Contributions to the anthropology, botany, geology and zoology of the Papuan region. Botany', 2], ['Order out of Chaos. Linnaean Plant Types and their Types', 7], ['Papéis Avulsos de Zoologia', 2], ['PhytoKeys', 34], ['Phytotaxa', 15], ['Reinwardtia', 2], ['Zoodiversity', 3], ['Zootaxa', 2], ['Other (2)', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=152)', 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);