function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Arkiv för Zoologi', 5], ['Beiträge Zur Entomologie = Contributions to Entomology', 1], ['Biodiversity Data Journal', 23], ['Catalogue of the Lepidoptera Phalaenae in the British Museum', 1], ['Centre for Entomological Studies, Miscellaneous Papers', 2], ['Ecologica Montenegrina', 3], ['Entomo Helvetica', 2], ['Entomologisk Tidskrift', 1], ['European Journal of Taxonomy', 1], ['Far Eastern Entomologist', 4], ['Linzer biologische Beiträge', 17], ['List of the Specimens of Lepidopterous Insects in the Collection of the British Museum', 21], ['Nota Lepidopterologica', 7], ['Proceedings of the Zoological Society of London', 1], ['Zootaxa', 25], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=117)', 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);