function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Dewaele, Leonard & Lambert, Olivier & Louwye, Stephen', 5], ['Dewaele, Leonard & Muizon, Christian de', 2], ['Dewaele, Leonard & Peredo, Carlos Mauricio & Meyvisch, Pjotr', 4], ['Jackson, Stephen M. & Jansen, Justin J. F. J.', 3], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 30], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 8], ['Koretsky, I. & Rahmat, S. & Peters, N.', 6], ['Koretsky, I. A. & Rahmat, S. J.', 4], ['Koretsky, I. A. & Rahmat, S. J. & Peters, N.', 8], ['Linnaeus, Carolus', 5], ['Rahmat, S. J. & Koretsky, I. A. & Osborne, J. E. & Alford, A. A.', 3], ['Rule, James P & Adams, Justin W & Fitzgerald, Erich M G', 3], ['Russell A. Mittermeier & Don E. Wilson', 19], ['W. Christopher Wozencraft', 30], ['Wilson, Don E. & Reeder, DeeAnn', 44], ['Other (15)', 18] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=192)', 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);