function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Diaz, Maria Cristina & Nuttall, Marissa & Pomponi, Shirley A.', 3], ['Kim, Young A & Lee, Kyung Jin', 7], ['Lehnert, Helmut & Stone, Robert P.', 2], ['Manconi, Renata & Cadeddu, Barbara & Ledda, Fabio', 7], ['Mc Cormack, Samuel P. & Kelly, Michelle', 9], ['Rützler, Klaus & Piantoni, Carla & Van, Rob W. M.', 1], ['Samaai, Toufiek & Pillay, Ruwen & Janson, Liesl', 2], ['Topsent, Émile', 1], ['Ugalde, Diana & Fernandez, Julio C. C. & Gómez, Patricia', 2], ['Ugalde, Diana & Gómez, Patricia & Simões, Nuno', 1], ['Van, Rob W. M.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=36)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);