function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bumrungsri, Sara & Harrison, David L. & Satasook, Chutamas', 2], ['Csorba, Gábor & Bates, Paul J. J.', 1], ['Don E. Wilson & Russell A. Mittermeier', 39], ['Francis, Charles M. & Eger, Judith L.', 8], ['Huang, Joe Chun-Chia & Jazdzyk, Elly Lestari & Nusalawo, Meyner', 3], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 16], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 3], ['K Ruskop, Sergei V. & Eger, Judith L.', 1], ['Karl F. Koopman', 13], ['Ruedi, Manuel & Biswas, Jayant & Csorba, Gábor', 2], ['Struebig, Matthew J. & Rossiter, Stephen J. & Bates, Paul J. J.', 2], ['Suyanto, Agustinus & Struebig, Matthew J.', 2], ['Thomas, Nikky M. & Duckworth, J. W. & Douangboubpha, Bounsavane', 8], ['Voon-Ching Lim & Rosli Ramli & Subha Bhassu & John-James Wilson', 5], ['Wilson, Don E. & Reeder, DeeAnn', 25], ['Other (7)', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=137)', 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);