function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Babu, K Subhash & Nandan, Bijoy', 2], ['Brian V Timms', 13], ['Ishikawa, Chiyomatsu', 2], ['Marinone, MarĂ­a Cristina & Urcola, Juan Ignacio & Rabet, Nicolas', 3], ['Padhye, Sameer & Timms, Brian & Ghate, Hemant V.', 1], ['Padhye, Sameer M.', 1], ['Padhye, Sameer M. & Rabet, Nicolas', 3], ['Padhye, Sameer M. & Rabet, Nicolas & Kulkarni, Mihir R.', 1], ['Rabet, Nicolas', 12], ['Richter, Stefan & Timms, Brian V.', 2], ['Rogers, Christopher & Weeks, Stephen C. & Hoeh, Walter R.', 1], ['Rogers, D. Christopher & Cruz-Rivera, Edwin', 1], ['Rogers, D. Christopher & Hill, Matthew A.', 2], ['Timms, Brian V & McLay, Colin L.', 1], ['Timms, Brian V.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=46)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);