function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Boustani, Mira & Rasmont, Pierre & Dathe, Holger H.', 27], ['Byvaltsev, A. M. & Belova, K. A. & Danilov, Yu. N.', 22], ['Dorchin, Achik & Praz, Christophe J.', 25], ['Eardley, Connal', 88], ['Gibbs, Jason & Ascher, John S. & Rightmyer, Molly G.', 29], ['Gonzalez, Victor H. & Griswold, Terry & Engel, Michael S.', 19], ['Lhomme, Patrick', 37], ['Madl, Michael', 22], ['Maharramov, M. M. & Fateryga, A. V. & Proshchalykin, M. Yu.', 29], ['Nkulu, Alain Tshibungu & Pauly, Alain & Dorchin, Achik', 111], ['Portman, Zachary M. & Gardner, Joel & Lane, Ian G.', 29], ['Praz, Christophe & Al-Shahat, Ahmed M. & Gadallah, Neveen S.', 21], ['Raw, Anthony', 287], ['Reese, Elizabeth G. & Burkle, Laura A. & Delphia, Casey M.', 20], ['Risch, Stephan & Roberts, Stuart P. M. & Smit, Jan', 42], ['Other (58)', 305] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=1113)', 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);