function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Andrade, Tamires de O. & Ramos, Kelli S. & Onody, Helena C.', 24], ['Fabricius, Johann Christian', 8], ['John M. Leavengood, Jr. & Waichert, Cecilia & Rodriguez, Juanita', 1], ['Kurczewski, Frank E. & West, Rick C. & Waichert, Cecilia', 75], ['Waichert, Cecilia & Rodriguez, Juanita & Von Dohlen, Carol D.', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=112)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 5, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);