Hi Kevin,
You can perform hit test using the HitTest method:
NHitTestResult result = nChartControl1.HitTest(x, y);
if (result.ChartElement == ChartElement.DataPoint)
{
// result.Series contains the series of the data point
// result.DataPointIndex contains the data point index
}
Is this the functionality you're looking for?
Best Regards,
Nevron Support Team