function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Don E. Wilson & Russell A. Mittermeier', 17], ['Fourvel, Jean-Baptiste & Fosse, Philippe & Fernandez, Philippe', 1], ['García-Prieto, Luis & Falcón-Ordaz, Jorge', 1], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 17], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 6], ['Law, Chris J.', 1], ['Lin, Liang- Kong & Motokawa, Masaharu & Harada, Masashi', 1], ['Linnaeus, Carolus', 10], ['Masseti, Marco', 1], ['Ramírez-Chaves, Héctor E. & Arango-Guerra, Heidi Liliana', 1], ['VOSS, ROBERT S.', 1], ['Voss, Robert S. & Fleck, David W.', 1], ['W. Christopher Wozencraft', 17], ['Wilson, Don E. & Reeder, DeeAnn', 71] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=146)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 14, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);