function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Biodiversity Data Journal', 23], ['Botanische Jahrbücher fur Systematik, Pflanzengeschichte und Pflanzengeographie.', 7], ['Bulletin of Miscellaneous Information (Royal Gardens Kew)', 1], ['Candollea', 1], ['Fossil Imprint', 1], ['Insecta Mundi', 4], ['Order out of Chaos. Linnaean Plant Types and their Types', 13], ['Papéis Avulsos de Zoologia', 1], ['PhytoKeys', 3], ['Phytotaxa', 32], ['Transactions of the Linnean Society of London, Second Series. Botany', 1], ['Zootaxa', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=91)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);