The Radar chart can be adjusted by dragging the points on the chart. When the onadjustend event fires, you will find the following information in the RGraph registry - RGraph.Registry.Get('chart.adjusting.radar.myc') - where myc is the ID of your canvas:
<script> window.onload = function (e) { var radar = new RGraph.Radar('myc', [4,3,8,6,8,7,7,4,5], [7,2,4,5,4,3,3,3,3]); radar.Set('chart.adjustable', true); radar.Set('chart.colors', ['rgba(255,0,0,0.5)', 'rgba(255,255,0,0.5)']); radar.Set('chart.labels', ['Hoolio', 'Godfrey', 'Albert', 'Jeff', 'Jack', 'Pete', 'Lou', 'Barney', 'Fred']); radar.Draw(); RGraph.AddCustomEventListener(radar, 'onadjustend', function (obj) {p(RGraph.Registry.Get('chart.adjusting.radar.myc'));}); } </script>