function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Aellen, V.', 8], ['Benda, Petr & Vallo, Peter & Reiter, AntonĂ­n', 5], ['Cakenberghe, Victor Van & Tungaluna, Guy-Crispin Gembu', 27], ['Don E. Wilson & Russell A. Mittermeier', 89], ['Goodman, Steven M. & Schoeman, M. Corrie', 5], ['Huang, Joe Chun-Chia & Jazdzyk, Elly Lestari & Nusalawo, Meyner', 7], ['Karl F. Koopman', 68], ['Monadjem, Ara & Richards, Leigh & Denys, Christiane', 9], ['Mongombe, Aaron Manga & Fils, Eric Moise Bakwo', 7], ['Suyanto, Agustinus & Struebig, Matthew J.', 7], ['Thomas, Nikky M. & Duckworth, J. W. & Douangboubpha, Bounsavane', 11], ['Turni, Hendrik & Kock, Dieter', 18], ['Voon-Ching Lim & Rosli Ramli & Subha Bhassu & John-James Wilson', 22], ['Wilson, Don E. & Reeder, DeeAnn', 170], ['Zhang, Libiao & Jones, Gareth & Zhang, Jinshuo & Zhu, Guangjian', 8], ['Other (25)', 57] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=518)', 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);