function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Chatterjee, Tapas & Priyalakshmi, Geetha & Todaro, M. Antonio', 7], ['Hummon, William D.', 2], ['Kolicka, MaƂgorzata & Kisielewski, Jacek & Kotwicki, Lech', 2], ['Schultze, Max', 1], ['Yamauchi, Shohei & Kajihara, Hiroshi', 2], ['Zotto, Matteo Dal & Leasi, Francesca & Todaro, M. Antonio', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=15)', 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);