function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Gondim, Anne Isabelley & Moura, Rafael Bendayan De', 1], ['Kogo, Ichizo & Fujita, Toshihiko & Kubodera, Tsunemi', 13], ['Mohammednowshad, B. & Idreesbabu, K. K. & Parameswaran, Usha V.', 3], ['Obuchi, Masami', 8], ['Summers, Mindi M. & Messing, Charles G. & Rouse, Greg W.', 2], ['Vera-Caripe, Jonathan Alejandro & Gómez, Carlos Federico Lira', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=28)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 6, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);