function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Boessenecker, Robert W.', 4], ['Colpaert, Wouter & Bosselaers, Mark & Lambert, Olivier', 2], ['García-Prieto, Luis & Falcón-Ordaz, Jorge', 1], ['Hernández-Orts, Jesús S. & Viola, M. Natalia Paso', 1], ['James G. Mead & Robert L. Brownell, Jr.', 11], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 10], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 8], ['Luque, José L. & Muniz-Pereira, Luís C. & Siciliano, Salvatore', 1], ['Murakami, Mizuki & Shimada, Chieko & Hikida, Yoshinori', 1], ['Russell A. Mittermeier & Don E. Wilson', 8], ['Wilson, Don E. & Reeder, DeeAnn', 18] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=65)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);