function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annales du Musée du Congo Belge, Série 1, Zoologiques', 7], ['Anzeiger', 1], ['Bulletin de la Société Zoologique de France', 2], ['Bulletin du Muséum National d’Histoire Naturelle, Série 2', 1], ['Journal of Natural History', 1], ['Kungliga Svenska Vetenskapsakademiens Handlingar', 1], ['Notulae Naturae', 1], ['Proceedings of the Academy of Natural Sciences of Philadelphia', 3], ['Proceedings of the Zoological Society of London, B', 2], ['Publicacoes Culturais da Companhia de Diamantes Angola', 2], ['Revue Zoologique Africaine', 2], ['Revue de Zoologie et de Botanique Africaines', 3], ['Videnskabelige Meddelelser frå Dansk Naturhistorisk Forening', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=27)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerSource', 'pie', 13, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerSource')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerSource);