function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Dooley Iii, John W. & Lambrecht, Susan & Honda, Jeffrey', 1], ['Gill, Raymond', 10], ['Gill, Raymond & Holder, Peter', 1], ['Hernández-Suárez, Estrella & Martin, Jon H. & Gill, Raymond J.', 14], ['Kim, Ok-Kyung & Ishikawa, Tadashi & Yamada, Yoshihiro', 2], ['Lee, Suhyeon & Suh, Soo-Jung', 1], ['Malumphy, Christopher & Walsh, Katherine & Suarez, Belen', 2], ['Manzari, Shahab & Quicke, Donald L. J.', 1], ['Martin, Jon H.', 3], ['Martin, Jon H. & Camus, Josephine M.', 1], ['Martin, Jon H. & Mound, Laurence A.', 1], ['Quaintance, A. L. & Baker, A. C.', 1], ['Suh, Soo-Jung', 1], ['Suh, Soo-Jung & Ji, Jungyoun', 1], ['Xian, Chunlan & Leong, Chi Man & Luo, Jiuyang & Jia, Fenglong', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=41)', 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);