function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Ban, C. & Ljubomirov, T.', 6], ['Boustani, Mira & Rasmont, Pierre & Dathe, Holger H.', 18], ['Byvaltsev, A. M. & Belova, K. A. & Danilov, Yu. N.', 6], ['Delphia, Casey M. & Griswold, Terry & Reese, Elizabeth G.', 7], ['Else, George R. & Bolton, Barry & Broad, Gavin R.', 6], ['Gibbs, Jason & Ascher, John S. & Rightmyer, Molly G.', 6], ['Kuhlmann, M. & Gess, F. G. & Koch, F. & Gess, S. K.', 14], ['Lhomme, Patrick', 78], ['Müller, Andreas', 61], ['Müller, Andreas & Mauss, Volker', 11], ['Portman, Zachary M. & Gardner, Joel & Lane, Ian G.', 5], ['Proshchalykin, M. Yu.', 8], ['Proshchalykin, Maxim Yu. & Müller, Andreas', 13], ['Reese, Elizabeth G. & Burkle, Laura A. & Delphia, Casey M.', 7], ['Risch, Stephan & Roberts, Stuart P. M. & Smit, Jan', 21], ['Other (20)', 45] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=312)', 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);