function drawChartTreatmentsPerSource() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Annali del Museo Civico di Storia Naturale di Genova', 1], ['Annals and Magazine of Natural History, Including Zoology, Botany and Geology, Being a Continuation of the \' Magazine of Botany ', 10], ['Archivos do Museu Nacional do Rio de Janeiro', 2], ['Avacient', 1], ['Bulletin de la Société Philomatique de Paris, serie 7', 1], ['Bulletin de la Société Zoologique de France', 2], ['Deterville', 1], ['Folia Clinica et Biologica, São Paulo', 1], ['Journal of Arachnology', 5], ['L\'Institute, Journal Général des Sociétés et Travaux Scientifiques de la France et de l\'Étranger', 3], ['Occasional Papers of the California Academy of Sciences', 7], ['Revista Belén, La Habana', 2], ['Studies on the Fauna of Curacao and Other Caribbean Islands', 2], ['Transactions of the American Philosophical Society, New Series', 2], ['Zootaxa', 23], ['Other (9)', 9] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Journal (n=72)', 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);