function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Boessenecker, Robert W.', 3], ['Gray, John Edward', 1], ['James G. Mead & Robert L. Brownell, Jr.', 6], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 6], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 5], ['Lacépède, Bernard Germain Étienne de', 1], ['Luque, José L. & Muniz-Pereira, Luís C. & Siciliano, Salvatore', 3], ['Rosel, Patricia E. & Wilcox, Lynsey A. & Yamada, Tadasu K.', 1], ['Russell A. Mittermeier & Don E. Wilson', 7], ['Wilson, Don E. & Reeder, DeeAnn', 15] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=48)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 10, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);