I have an MSChart object with a Series (SeriesChartType.Point); Zooming is enabled to allow the users to zoom into a specific region of the data. After the user has zoomed into that region, I’m interested in knowing the set of DataPoints that are still visible.
Is there a way to ascertain which DataPoints are still visible?
Something like the following should work for you. I tested it with a
LineChartType, but should work for any plotting type as long as the data isX,Y(and notX,Y,Y)HTH