function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bulletin of Marine Science', 1], ['Marine and Freshwater Research', 1], ['National Museum of New Zealand records', 1], ['Proceedings of the Biological Society of Washington', 2], ['Proceedings of the United States National Museum, 3', 1], ['Report of Faculty of Fisheries Prefectural University of Mie', 1], ['Résultats Scientifiques de la Expédition Océanographique Belge dans les Eaux Côtieres Africaines de l\'Atlantique Sud (1948 - 194', 1], ['Sci. Reports, John Murray Exped.', 2], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 1], ['Zootaxa', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=13)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);