function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Amr, Zuhair S. & Abu, Mohammad A. & Qumsiyeh, Mazin & Eid, Ehab', 1], ['Augugliaro, Claudio & Paniccia, Chiara', 1], ['Augugliaro, Claudio & Worsøe Havmøller, Rasmus & Monti, Ibra E.', 1], ['Don E. Wilson & Russell A. Mittermeier & Thomas E. Lacher, Jr', 6], ['Guy G. Musser & Michael D. Carleton', 7], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 12], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 2], ['Wilson, Don E. & Reeder, DeeAnn', 7] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=37)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 8, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);