function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Brandão, Marcus Vinicius & Carmignotto, Ana Paula', 1], ['Brandão, Marcus Vinicius & Percequillo, Alexandre Reis', 1], ['Don E. Wilson & Russell A. Mittermeier & Thomas E. Lacher, Jr', 38], ['D’Elía, Guillermo & Mora, Ismael & Myers, Phil & Owen, Robert D.', 1], ['Guy G. Musser & Michael D. Carleton', 46], ['J. Pablo Jayat & Pablo E. Ortiz & Jorge Salazar-Bravo', 6], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 34], ['Jiménez, Carlos F. & Pacheco, Víctor & Vivas, Dan', 1], ['Lee Jr, Thomas E. & Tinoco, Nicolas & Crockett, Seth C.', 1], ['VOSS, ROBERT S.', 2], ['Velazco, Paúl M. & Patterson, Bruce D.', 1], ['Wilson, Don E. & Reeder, DeeAnn', 44] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=176)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 12, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);