function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bezerra, Alexandra M. R. & Marinho-Filho, Jader', 13], ['Dickerman, R. W. & Koopman, K. F. & Seymour, C.', 13], ['Don E. Wilson & Russell A. Mittermeier', 217], ['Garbino, Guilherme S. T. & Lim, Burton K.', 15], ['García-Prieto, Luis & Falcón-Ordaz, Jorge', 10], ['Gutierrez, Eliecer E. & Marinho-Filho, Jader', 6], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 186], ['Karl F. Koopman', 191], ['Siles, Lizette & Baker, Robert J.', 6], ['Simmons, Nancy B. & Voss, Robert S.', 60], ['Turni, Hendrik & Kock, Dieter', 20], ['Velazco, Paúl M. & Patterson, Bruce D.', 30], ['Velazco, Paúl M. & Voss, Robert S. & Fleck, David W.', 70], ['Verde, Rair Sousa & Ferreira Oliveira, Sidney', 16], ['Wilson, Don E. & Reeder, DeeAnn', 292], ['Other (47)', 74] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=1219)', 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);