function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bumrungsri, Sara & Harrison, David L. & Satasook, Chutamas', 1], ['Cakenberghe, Victor Van & Tungaluna, Guy-Crispin Gembu', 11], ['Don E. Wilson & Russell A. Mittermeier', 27], ['Huang, Joe Chun-Chia & Jazdzyk, Elly Lestari & Nusalawo, Meyner', 6], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 17], ['Karl F. Koopman', 23], ['Monadjem, Ara & Richards, Leigh & Denys, Christiane', 2], ['Monadjem, Ara & Schoeman, M. Corrie & Reside, April', 3], ['Patterson, Georgina & Martin, Thomas Edward & Adams, Nathan', 2], ['Sedlock, Jodi L. & Heaney, Lawrence R. & Balete, Danilo S.', 3], ['Struebig, Matthew J. & Rossiter, Stephen J. & Bates, Paul J. J.', 3], ['Suyanto, Agustinus & Struebig, Matthew J.', 4], ['Thomas, Nikky M. & Duckworth, J. W. & Douangboubpha, Bounsavane', 5], ['Voon-Ching Lim & Rosli Ramli & Subha Bhassu & John-James Wilson', 9], ['Wilson, Don E. & Reeder, DeeAnn', 27], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=147)', 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);