function drawChartTreatmentsPerAuthor() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Number of Treatments'], ['Don E. Wilson & Russell A. Mittermeier', 8], ['James H. Honacki & Kenneth E. Kinman & James W. Koeppl', 6], ['Jo, Yeong-Seok & Baccus, John T. & Koprowski, John L.', 3], ['Karl F. Koopman', 7], ['Sachanowicz, Konrad & Ciechanowski, Mateusz & Rachwald, Alek', 1], ['Voon-Ching Lim & Rosli Ramli & Subha Bhassu & John-James Wilson', 1], ['Wilson, Don E. & Reeder, DeeAnn', 14] ]); var chartOptions = { pieHole: 0, title: 'Treatments per Author (n=40)', fontSize: 'automatic', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'TreatmentsPerAuthor', 'pie', 7, 0); var chart = new google.visualization.PieChart(document.getElementById('chartDivTreatmentsPerAuthor')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['corechart']}); google.setOnLoadCallback(drawChartTreatmentsPerAuthor);