function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Broad, Gavin R.', 22], ['Khalaim, Andrey', 3], ['Khalaim, Andrey & Sheng, Mao-Ling', 2], ['Khalaim, Andrey I.', 4], ['Khalaim, Andrey I. & Bordera, Santiago', 1], ['Khalaim, Andrey I. & Ruiz-Cancino, Enrique', 5], ['Khalaim, Andrey I. & Várkonyi, Gergely', 14], ['Kolarov, J.', 6], ['Riedel & Pénigot & Schwarz & Diller & Johansson & Japoshvili, G.', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=59)', 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);