function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Buecher, Emmanuelle & Goy, Jacqueline & J, Mark & Gibbons', 6], ['Calder, Dale R.', 6], ['Deshmukh, Umakant Bhoopati', 2], ['Galea, Horia R.', 1], ['Galea, Horia R. & Schories, Dirk', 1], ['Gil, Marta & Ramil, Fran', 2], ['Gravili, Cinzia & Vito, Doris De & Camillo, Cristina Gioia Di', 3], ['Moura, Carlos J.', 1], ['OLIVEIRA, OTTO M. P. & MIRANDA, THAÍS P. & ARAUJO, ENILMA M.', 23], ['Peña Cantero, Álvaro L. & Horton, Tammy', 1], ['Purushothaman, Jasmine & Kharusi, Lubna Al & Mills, Claudia E.', 1], ['Schuchert, Peter', 16], ['Schuchert, Peter & Collins, Richard', 9], ['Verhaegen, Gerlien & Cimoli, Emiliano & Lindsay, Dhugal', 1], ['Watson, Jeanette E.', 2], ['Other (1)', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=76)', 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);