function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['C. O & Madl, M. & Olmi, M.', 4], ['Derafshan, Hossein Ali & Olmi, Massimo', 3], ['Else, George R. & Bolton, Barry & Broad, Gavin R.', 14], ['Guglielmino, Adalgisa & Olmi, Massimo & Marletta, Alessandro', 2], ['Kochetkov, D. N.', 1], ['Olmi, Massimo', 2], ['Olmi, Massimo & Chen, Hua-Yan & Guglielmino, Adalgisa', 20], ['Olmi, Massimo & Copeland, Robert S. & Guglielmino, Adalgisa', 5], ['Olmi, Massimo & Copeland, Robert S. & Noort, Simon Van', 8], ['Olmi, Massimo & Villemant, Claire', 1], ['Olmi, Massimo & van Noort, Simon & Guglielmino, Adalgisa', 4], ['Schüepp, Christof & Olmi, Massimo', 3], ['Xu, Zaifu & Olmi, Massimo & Guglielmino, Adalgisa & Chen, Huayan', 12], ['Xu, Zaifu & Olmi, Massimo & He, Junhua', 32] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=111)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);