function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Chatterjee, Tapas & Priyalakshmi, Geetha & Todaro, M. Antonio', 10], ['Hummon, William D.', 4], ['Hummon, William D. & Todaro, Antonio', 3], ['Lee, Jimin & Chang, Cheon Young', 3], ['Lee, Jimin & Chang, Cheon Young & Kim, Il-hoi', 1], ['Lee, Jimin & Kim, Dongsung & Chang, Cheon Young', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=26)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 6, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);