function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Boessenecker, Robert W.', 2], ['Fitzgerald, Erich M. G.', 2], ['García-Prieto, Luis & Falcón-Ordaz, Jorge', 3], ['Gray, John Edward', 2], ['Jackson, Stephen M. & Jansen, Justin J. F. J.', 2], ['James G. Mead & Robert L. Brownell, Jr.', 50], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 51], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 33], ['Linnaeus, Carolus', 4], ['Luque, José L. & Muniz-Pereira, Luís C. & Siciliano, Salvatore', 13], ['Morin, Phillip A. & McCarthy, Morgan L. & Fung, Charissa W.', 2], ['Parnaby, Harry E. & Ingleby, Sandy & Divljan, Anja', 2], ['Russell A. Mittermeier & Don E. Wilson', 31], ['Voss, Robert S. & Fleck, David W.', 2], ['Wilson, Don E. & Reeder, DeeAnn', 65], ['Other (12)', 13] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=277)', 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);