function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annals of the South African Museum\'', 4], ['Bolletino della Societa geologica italiana', 2], ['Bulletin du Muséum National d’Histoire Naturelle, Série 4, Section A, Zoologie, Biologie et Écologie d’Animal', 3], ['Korean Journal of Systematic Zoology, special issue', 2], ['Kungliga Svenska Vetenskapsakademiens Handlingar', 2], ['Memoirs of the College of Science, Kyoto Imperial University, B', 6], ['Mémoires du Muséum National d’Histoire Naturelle, Série A, Zoologie', 4], ['Natural and Applied Science Bulletin', 2], ['Proceedings of the United States National Museum', 2], ['Publications of the Seto Marine Biological Laboratory', 3], ['Raffles Bulletin of Zoology', 4], ['Ray Society', 5], ['Videnskabelige Meddelelser fra Dansk Naturhistoriske Forening i Kjøbenhavn', 5], ['Zoologicheskiy zhurnal', 6], ['Zootaxa', 13], ['Other (19)', 22] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=85)', 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);