function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of the Lyceum of Natural History of New York', 11], ['Biodiversity Data Journal', 4], ['Bulletin of the United States Bureau of Fisheries', 2], ['Cybium', 2], ['Eawag: Swiss Federal Institute of Aquatic Science and Technology', 4], ['European Journal of Taxonomy', 3], ['Graellsia', 2], ['Ichthyological Exploration of Freshwaters', 2], ['Journal of Fish Biology', 3], ['Laurentius Salvius', 29], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 10], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 3], ['Turkish Journal of Zoology', 5], ['Zoosystematics and Evolution', 12], ['Zootaxa', 64], ['Other (25)', 28] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=184)', 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);