function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Andréfouët, Serge & Chen, Wei-Jen & Kinch, Jeff & Mana, Ralph', 1256], ['Barcelos, Luis MD & Rodrigues, Pedro R & Bried, Joel', 816], ['Bleeker, Pieter', 789], ['Carneiro, Miguel & Martins, Rogélia & Landi, Monica', 1187], ['Don E. Wilson & Russell A. Mittermeier', 1850], ['Don E. Wilson & Russell A. Mittermeier & Thomas E. Lacher, Jr', 1718], ['Don E. Wilson & Thomas E. Lacher, Jr & Russell A. Mittermeier', 851], ['Guy G. Musser & Michael D. Carleton', 1625], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 5376], ['Karl F. Koopman', 1110], ['Laan, Richard Van Der & Eschmeyer, William N. & Fricke, Ronald', 678], ['Linnaeus, Carolus', 1615], ['Love, Milton S. & Bizzarro, Joseph J. & Cornthwaite, Maria', 1737], ['Russell A. Mittermeier & Don E. Wilson', 1183], ['Wilson, Don E. & Reeder, DeeAnn', 10043], ['Other (11645)', 78964] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=110798)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 16, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);