function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of the Queensland Museum', 1], ['Annals of the South African Museum', 2], ['Arkiv för Zoologi', 6], ['Beiträge Zur Entomologie = Contributions to Entomology', 1], ['Biodiversity Data Journal', 41], ['Ecologica Montenegrina', 15], ['Entomo Helvetica', 2], ['Entomologisk Tidskrift', 5], ['Far Eastern Entomologist', 2], ['Insecta Mundi', 2], ['Linzer biologische Beiträge', 11], ['List of the Specimens of Lepidopterous Insects in the Collection of the British Museum', 8], ['Transactions of the Entomological Society of London', 4], ['ZooKeys', 4], ['Zootaxa', 297], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=404)', 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);