Hi Alex,
The values are already updated in the series when the EndDrag event is fired, but the data point object keeps the old values. You can read the new ones directly from the series or compose a data point object like this:
NSeries series = (NSeries)point.ParentNode;
NDataPoint newDP = series.ComposeDataPoint(point.IndexInSeries);
MessageBox.Show(String.Format("X:{0} Y:{1}", newDP[DataPointValue.X], newDP[DataPointValue.Y]));
Best Regards,
Nevron Support Team