function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Bell, Christopher J. & Godwin, William & Jenkins, Kelsey M.', 2], ['Don E. Wilson', 4], ['García-Prieto, Luis & Falcón-Ordaz, Jorge', 1], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 4], ['Linnaeus, Carolus', 2], ['Russell A. Mittermeier & Don E. Wilson', 3], ['Voss, Robert S. & Fleck, David W.', 1], ['Wilson, Don E. & Reeder, DeeAnn', 4] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=21)', 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);