function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annale van die Suid-Afrikaanse Museum [Annals of the South African Museum]', 6], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 5], ['Annali del Museo Civico di Storia Naturale di Genova', 5], ['Anzeiger', 2], ['Aquarien und Terrarien Zeitschrift', 2], ['Bonner zoologische Beiträge', 1], ['Bulletin de la Société Zoologique de France', 3], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 4], ['Bulletin of the American Museum of Natural History', 3], ['Notes from the Leyden Museum', 2], ['Proceedings of the New England Zoölogical Club', 1], ['Proceedings of the Zoological Society of London, B', 3], ['Revue de Zoologie et de Botanique Africaines', 2], ['Sitzungsberichte der Gesellschaft Naturforschender Freunde zu Berlin', 3], ['Transactions of the Zoological Society of London', 7], ['Other (3)', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=52)', 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);