function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Dale-Skey, Natalie & Askew, Richard R. & Noyes, John S.', 72], ['Gates, Michael W.', 1], ['Lotfalizadeh, Hossein & Karimpour, Younes & Delvare, GĂ©rard', 2], ['Lotfalizadeh, Hossein & Rasplus, Jean-Yves & Cristofaro, Massimo', 1], ['Stojanova, A. & Ghahari, H.', 4], ['Zerova, M. D. & Fursov, V. N.', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=81)', 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);