function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['A. W', 36], ['Astafurova, Yulia V. & Proshchalykin, Maxim Yu.', 65], ['Astafurova, Yulia V. & Yu, Maxim', 50], ['Boustani, Mira & Rasmont, Pierre & Dathe, Holger H.', 17], ['Else, George R. & Bolton, Barry & Broad, Gavin R.', 12], ['Gibbs, Jason & Ascher, John S. & Rightmyer, Molly G.', 5], ['Khodaparast, Razeyeh & Monfared, Alireza', 16], ['Lhomme, Patrick', 12], ['Murao, Ryuki & Tadauchi, Osamu & Miyanaga, Ryoichi', 56], ['Portman, Zachary M. & Gardner, Joel & Lane, Ian G.', 5], ['Reese, Elizabeth G. & Burkle, Laura A. & Delphia, Casey M.', 5], ['Stephenson, Phillip L & Griswold, Terry L & Arduser, Michael S', 6], ['V, Yulia & Y, Maxim & M, Mahir', 17], ['Weissmann, Julie A. & Picanco, Ana & Borges, Paulo A. V.', 6], ['Zettel, Herbert & Ockermüller, Esther & Schoder, Sabine', 9], ['Other (20)', 46] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=363)', 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);