function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bellini, Bruno Cavalcante & Cipola, Nikolas Gioia', 2], ['Cipola, Nikolas Gioia', 1], ['Cipola, Nikolas Gioia & Morais, José Wellington De', 7], ['Nguyen, Minh & Soto-Adames, Felipe N.', 14], ['Nunes, Rudy Camilo & Bellini, Bruno Cavalcante', 1], ['Ospina-Sanchez, Claudia Marcela & Soto-Adames, Felipe N', 6], ['Soto-Adames, Felipe N.', 14], ['Soto-Adames, Felipe N. & Taylor, Steven J.', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=52)', 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);