function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Araya, Juan Francisco', 1], ['Baba, Kikutaro', 1], ['Cunha, Carlo M. & Rosenberg, Gary', 15], ['Delgado, Marlon & Freire, Fúlvio Aurélio de Morais', 4], ['Gray, John Edward', 1], ['Gutiérrez, Manuel Caballer & Ortea, Jesús & Rivero, Nelsy', 10], ['Lamarck, J. B. P. A. de M. de', 3], ['Linnaeus, Carolus', 1], ['Mariottini, Paolo & Smriglio, Carlo & Oliverio, Marco', 3], ['Mehrotra, Rahul & A. Caballer Gutierrez, Manuel & M. Scott, Chad', 5], ['Mendivil, Alejandro & Cardoso, Franz', 2], ['Nimbs, Matt J.', 3], ['Pease, W. H.', 5], ['Valdés, Ángel & Breslau, Eric & Padula, Vinicius', 1], ['Yonow, Nathalie', 5], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=61)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);