function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Araújo, Marcel Santos De & Feres, Reinaldo José Fazzio', 1], ['Eren, Gökhan & Öztürk, Mehmet & Mironov, Sergey V.', 1], ['Hernandes, Fábio A. & Valim, Michel P.', 2], ['LIU, DONG & YI, TIAN-CI & XU, YUN & ZHANG, ZHI-QIANG', 4], ['Mironov, Sergey V. & Literak, Ivan & Čapek, Miroslav', 5], ['Reeves, Will K. & Durden, Lance A. & Ritzi, Christopher M.', 2], ['Valim, Michel P. & Hernandes, Fábio A.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=16)', 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);