.net 4 vs2010 winform c#
added some points using
chart1.Series[0].Points.AddXY(x,y);
then zoom the x axis using
chart1.ChartAreas[0].AxisX.ScaleView.Zoom(a,b);
Are the any methods to return all the points on the screen (b> point.Xvalue >a)
Thank you!
By using LINQ, you can do the following:
rangecontain all data points whose XValue is greater thanaand less thanb.