function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bisconti, Michelangelo & Bosselaers, Mark', 2], ['Bisconti, Michelangelo & Damarco, Piero & Pavia, Marco', 2], ['Bisconti, Michelangelo & Munsterman, Dirk K.', 2], ['Boessenecker, Robert W.', 4], ['Bosselaers, Mark & Post, Klaas', 2], ['Bouetel, Virginie & Muizon, Christian de', 1], ['Fitzgerald, Erich M. G.', 1], ['Gray, John Edward', 1], ['Hernández-Orts, Jesús S. & Viola, M. Natalia Paso', 1], ['James G. Mead & Robert L. Brownell, Jr.', 8], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 9], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 10], ['Luque, José L. & Muniz-Pereira, Luís C. & Siciliano, Salvatore', 3], ['Russell A. Mittermeier & Don E. Wilson', 9], ['Wilson, Don E. & Reeder, DeeAnn', 18], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=77)', 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);