function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Cantalice, Kleyton Magno & Martinez-Melo, Alejandra', 2], ['Carneiro, Miguel & Martins, Rogélia & Landi, Monica', 1], ['Ebersole, Jun A. & Cicimurri, David J. & Stringer, Gary L.', 3], ['Ebert, David A. & White, William T. & Ho, Hsuan-Ching', 1], ['Ebert, David A. & Wintner, Sabine P. & Kyne, Peter M.', 2], ['Edwards, A. J. & Gill, A. C. & Abohweyere, P. O.', 1], ['Fernando, Daniel & Bown, Rosalind M. K. & Tanna, Akshay', 1], ['Love, Milton S. & Bizzarro, Joseph J. & Cornthwaite, Maria', 1], ['Macdonald, John Denis & Barron, C. H.', 1], ['Smith-Vaniz, William F. & Jelks, Howard L.', 1], ['White, William T. & Ko’Ou, Alfred', 2], ['Yennawar, Prasanna & Mohapatra, Anil & Tudu, Prasad Chandra', 1], ['Zouhri, Samir & Gingerich, Philip D. & Khalloufi, Bouziane', 1], ['van Kampen, P. N.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=19)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);