function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Araya, Juan Francisco', 1], ['Baba, Kikutaro', 1], ['Cunha, Carlo M. & Rosenberg, Gary', 4], ['Delgado, Marlon & Freire, Fúlvio Aurélio de Morais', 2], ['Gutiérrez, Manuel Caballer & Ortea, Jesús & Rivero, Nelsy', 6], ['Mariottini, Paolo & Smriglio, Carlo & Oliverio, Marco', 1], ['Mehrotra, Rahul & A. Caballer Gutierrez, Manuel & M. Scott, Chad', 2], ['Mendivil, Alejandro & Cardoso, Franz', 2], ['Nimbs, Matt J.', 2], ['Yonow, Nathalie', 1], ['Yonow, Nathalie & Anderson, R. Charles & Buttress, Susan G.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=23)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);