function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Acta Entomologica Musei Nationalis Pragae', 2], ['Beiträge Zur Entomologie = Contributions to Entomology', 1], ['Biodiversity Data Journal', 17], ['Botany', 1], ['Check List', 8], ['Cryptogamie, Mycologie', 3], ['Far Eastern Entomologist', 1], ['Index Fungorum', 1], ['MycoKeys', 56], ['Order out of Chaos. Linnaean Plant Types and their Types', 7], ['Phytotaxa', 74], ['Sborník Severočeského Muzea', 3], ['Zoodiversity', 2], ['Zoological Systematics', 2], ['Zootaxa', 19], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=198)', 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);