function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Biologica Universitatis Daugavpiliensis', 55], ['Biodiversity Data Journal', 126], ['Candollea', 16], ['Check List', 17], ['Cryptogamie, Mycologie', 327], ['Insecta Mundi', 137], ['Journal of Species Research', 9], ['Linzer biologische Beiträge', 22], ['MycoKeys', 222], ['Order out of Chaos. Linnaean Plant Types and their Types', 22], ['Phytochemistry', 5], ['Phytotaxa', 420], ['Records of the Australian Museum', 14], ['The Coleopterists Bulletin', 5], ['Zootaxa', 20], ['Other (13)', 17] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=1434)', 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);