function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Barreto, Mauricio & Burbano, María E. & Proctor, Heather C.', 2], ['Constantinescu, I. C. & Cobzaru, I. & Geamana, N. A.', 1], ['Constantinescu, Ioana Cristina & Chişamera, Gabriel Bogdan', 1], ['Constantinescu, Ioana Cristina & Chișamera, Gabriel', 2], ['Constantinescu, Ioana Cristina & Cobzaru, Ioana', 4], ['Constantinescu, Ioana Cristina & Popa, Oana Paula', 1], ['ConstantinescuK, Ioana Cristina & ChiȘameraK, Gabriel Bogdan', 1], ['HALLIDAY, R. B.', 4], ['Hernandes, Fabio Akashi', 8], ['Hernandes, Fábio Akashi & OConnor, Barry M.', 1], ['Mironov, Sergey V. & Bermudez, Sergio', 1], ['Mironov, Sergey V. & Chandler, C. Ray', 12], ['Mironov, Sergey V. & Galloway, Terry D.', 17], ['Reeves, Will K. & Durden, Lance A. & Ritzi, Christopher M.', 1], ['Wang, Zi-Ying & Proctor, Heather', 3] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=59)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 15, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);