Hi Telerik Team,
I am unable to find line chart data items active region points.(X,Y) values.
i used the following code to find the active region.
ChartSeriesItemsCollection
items = radChart1.Series[1].Items;
for (int i = 0; i < items.Count; i++)
{
MessageBox.Show(items[i].ActiveRegion.Region.GetLastPoint().X.ToString());
MessageBox.Show(items[i].ActiveRegion.Region.GetLastPoint().Y.ToString());
}
Please help me out. i need these points X and Y values. Please share some sample application to get the active region points.
Any help is highly appreciated.
Regards,
Kiran