function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Barringer, Lawrence', 2], ['Carlton, Christopher E. & MacRae, Ted C. & Tishechkin, Alexey K.', 2], ['Dejean, Pierre François Marie Auguste', 1], ['Hallinen, Marie J. & Steffens, Wayne P. & Schultz, Jennifer L.', 3], ['Hespenheide, Henry A.', 3], ['Hespenheide, Henry A. & Eiseman, Charles S.', 1], ['Migliore, Letizia Janaina & Casari, Sônia A. & Paiola, Gabriel', 2], ['Pérez-Hernández, Cisteil Xinum', 4], ['Webster, Reginald P. & DeMerchant, Ian', 1], ['Westcott, Richard L. & Hespenheide, Henry A.', 10], ['Westcott, Richard L. & Hespenheide, Henry A. & N, Jesús Romero', 1] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=30)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 11, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);