function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Gray, John Edward', 1], ['Leite, Dora M. B. & Fonseca, Cássio A. & Leal, Camille V.', 3], ['Mothes, Beatriz & Santos, Cristina P. & De Campos, Maurício A.', 2], ['Rützler, Klaus & Piantoni, Carla & Van, Rob W. M.', 4], ['Ugalde, Diana & Fernandez, Julio C. C. & Gómez, Patricia', 1], ['Van Soest, Rob W. M.', 2], ['Van, Rob W. M.', 3], ['Van, Rob W. M. & Kaiser, Kirstie L. & Syoc, Robert Van', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=17)', 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);