function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Baldwin, Carole C. & Castillo, Cristina I. & Weigt, Lee A.', 7], ['Böhlke, James E. & Springer, Victor G.', 2], ['Gilbert, Carter R.', 3], ['Greenfield, David W. Dr.', 2], ['Love, Milton S. & Bizzarro, Joseph J. & Cornthwaite, Maria', 2], ['Rosenblatt, Richard H. & Taylor, Leighton R.', 5], ['Williams, Jeffrey T. & Mounts, J. H.', 5] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=26)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 7, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);