function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Al-Kandari, Manal & Polikarpov, Igor & Nithyanandan, Manickam', 1], ['Azman, B. A. R.', 10], ['Bhoi, Gitanjali & Myers, Alan A. & Khatua, Rohit', 1], ['Lowry, J. K. & Bopiah, Arundathi', 2], ['Lowry, J. K. & Springthorpe, R. T.', 8], ['Lowry, James K. & Fanini, Lucia', 1], ['Lowry, Jim & Momtazi, Farzaneh', 1], ['Serejo, Cristiana S.', 4], ['Thacker, Dimple & Patel, Krupal & Myers, Alan', 5], ['Trivedi, Jigneshkumar N. & Lowry, James K. & Myers, Alan A.', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=35)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);