function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Chergui, Isslam & Satour, Abdellatif & Bouzid, Abdelhakim', 4], ['Damme, Kay Van', 1], ['Korn, Michael & Hundsdoerfer, Anna K.', 2], ['Padhye, Sameer & Rabet, Nicolas & Ghate, Hemant', 1], ['Padhye, Sameer & Timms, Brian & Ghate, Hemant V.', 1], ['Padhye, Sameer M. & Lazo-Wasem, Eric A.', 1], ['Rogers, D. Christopher & Hill, Matthew A.', 7], ['Scopoli, Giovanni Antonio', 1], ['Soesbergen, Martin & Sinkeldam, Jos', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=19)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 9, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);