function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Dooley Iii, John W. & Lambrecht, Susan & Honda, Jeffrey', 3], ['Dubey, Anil Kumar & David, Vasantharaj', 4], ['Lee, Suhyeon & Suh, Soo-Jung', 2], ['Manzari, Shahab & Quicke, Donald L. J.', 1], ['Martin, J. H. & Malumphy, C. P.', 1], ['Martin, Jon H.', 3], ['Martin, Jon H. & Mound, Laurence A.', 1], ['Valencia, Luis & Evans, Gregory A.', 2] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=17)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);