My Requirement to move Datapoint selection using keyboards right,left arrow keys.I am already highlight datapoints using selection changed event.But How to navigate the point?
This behavior is not supported by RadChartView. However, you can achieve your requirement by subscribing for the KeyDown event of the chart and inside its handler change the selected item. To do this, you can get the currently selected item and its index in the DataPoints collection of the series and increment the index with 1 or -1 (based on the pressed key). Then get the data point positioned on the new index and set its IsSelected property to true.
You can take a look at the attached project which contains sample implementation of this approach. But please keep in mind that this is customization and it is not well tested. So, I cannot guarantee that it will work in all expected cases. This is why I recommend you to test it properly if you decide to use it in production.
Regards,
Martin
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items