i have found legend click and handle with followiing code
function sky() {
var chart = $find("ctl00_MainContent_RadHtmlChartSent");
//attach an event handler
chart._chartObject.bind("legendItemClick", function (e) {
var index = e.seriesIndex;
var series=chart._chartObject.options.series.length;
debugger;
for (var i = 0; i < series; i++)
{
if(i==index)
{
chart._chartObject.options.series[i].visible = true;
}
else
{
chart._chartObject.options.series[i].visible = false;
}
}
$find("ctl00_MainContent_RadHtmlChartSent").repaint();
e.preventDefault();
});
window.onload=sky;