function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Dell’Angelo, Bruno & Gori, Sandro & Baschieri, Leonardo', 6], ['Dell’Angelo, Bruno & Landau, Bernard M. & Sosso, Maurizio', 8], ['Dell’Angelo, Bruno & Schwabe, Enrico & Gori, Sandro', 6], ['Jardim, Jaime A. & De Almeida, Sergio M. & De Simone, Luiz R. L.', 4], ['Reyes-Gomez, Adriana & Ortigosa, Deneb & Simoes, Nuno', 4], ['Reyes-Gómez, Adriana & Vargas-Ponce, Ofelia', 7], ['Schwabe, Enrico', 4], ['Schwabe, Enrico & Sirenko, Boris I. & Seeto, Johnson', 2], ['Sirenko, B. I.', 3], ['Sirenko, Boris', 2], ['Sirenko, Boris I. & Saito, Hiroshi', 15], ['Sirenko, Boris I. & Zhang, Junlong', 11], ['Thomas, Liju & Anseeuw, Bruno & Kutty, Ranjeet', 2], ['Voncina, Katarzyna & Mikkelsen, Nina Therese & Morrow, Christine', 3], ['Wilma M. Blom', 8], ['Other (4)', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=89)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);