function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bidzilya, Oleksiy & Chang, Patricia Esther Corro', 3], ['Bidzilya, Oleksiy & Karsholt, Ole & Kravchenko, Vasiliy', 2], ['Bidzilya, Oleksiy V.', 2], ['D, Nandhini & R, Shashank P. & Joshi, Rahul & Reddy, Karthik M.', 3], ['Karsholt, Ole & Huemer, Peter', 1], ['Komal, J. & Shashank, P. R. & Sondhi, Sanjay & Madan, Sohail', 1], ['Mbata, Keith J. & Prins, Jurate De', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=13)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 7, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);