function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['BEAUFORTIA SERIES OF MISCELLANEOUS PUBLICATIONS', 8], ['BIOGEOGRAPHIA-Lav. Soc. ital. Biogeoqr. N. S.', 36], ['Berliner ent Zeit', 38], ['Biodiversity Data Journal', 38], ['Caucasiana', 57], ['Far Eastern Entomologist', 17], ['International Journal of Myriapodology', 26], ['Istanbul Universitesi Orman Fakültesi Dergisi', 11], ['Journal of Natural History', 26], ['Records of the Australian Museum', 10], ['Verhandlungen der Zoologisch-Botanischen Gesellschaft in Wien', 9], ['ZooKeys', 58], ['Zoologische Jahrbücher, Abteilung für Systematik', 15], ['Zoosystema', 10], ['Zootaxa', 347], ['Other (66)', 133] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=839)', 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);