function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Braun, M.', 1], ['Campião, Karla Magalhães & Morais, Drausio Honorio', 1], ['Canavan, W. P. N.', 1], ['Deblock, S. & Capron, A. & Brygoo, E. R.', 1], ['Dollfus, R. P.', 1], ['Ergens, Radim', 1], ['MacCallum, G. A.', 4], ['Muniz-Pereira, Luís C. & Vieira, Fabiano M. & Luque, José L.', 1], ['Paredes-León, Ricardo & García-Prieto, Luis', 10], ['Pratt, Henry S.', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=23)', 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);