function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Anzeiger', 1], ['Bollettino dei Musei di Zoologia ed Anatomia Comparata della R. Università di Torino', 1], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 1], ['Bulletin of Fish Biology', 1], ['Bulletin of the Museum of Comparative Zoology at Harvard College, 3', 1], ['Bulletin of the United States Fish Commission', 1], ['Buntbarsche Bull.', 1], ['Denkschriften der Kaiserlichen Akademie der Wissenschaften, Wien. Mathematisch-Naturwissenschaftliche Klasse', 7], ['Proceedings of the United States National Museum, 3', 1], ['Proceedings of the Zoological Society of London, B', 9], ['Raffles Bulletin of Zoology', 2], ['Revue française des Cichlidophiles', 1], ['Sitzungsberichte Königlichen der Bayerischen Akademie der Wissenschaften zu Muenchen, Mathematisch-Physikalische Klasse', 2], ['Sitzungsberichte der Kaiserlichen Akademie der Wissenschaften, Mathematisch-Naturwissenschaften Classe', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=30)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);