function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bispo, André & Willenz, Philippe & Hajdu, Eduardo', 2], ['Calcinai, Barbara & Bastari, Azzurra & Bavestrello, Giorgio', 1], ['Campos, Maurício & Mothes, Beatriz & Eckert, Rafael', 2], ['Diaz, Maria Cristina & Nuttall, Marissa & Pomponi, Shirley A.', 1], ['Rützler, Klaus & Piantoni, Carla & Van, Rob W. M.', 4], ['Santos, George Garcia & Docio, Loyana & Pinheiro, Ulisses', 2], ['Ugalde, Diana & Fernandez, Julio C. C. & Gómez, Patricia', 1], ['Van, Rob W. M.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=14)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);