Hello Anupama,
The control supports axis zooming which in practice enables you to view a specified range of the data along any of the axes. For example you can use the following code for the X axis:
double fromValue = 3;
double toValue = 8;
NAxis axisX = chart.Axis(StandardAxis.PrimaryX);
axisX.View = new NRangeAxisView(new NRange1DD(fromValue, toValue), true, true);
Best Regards,
Nevron Support Team