Get the data point collection based on region

3 Sep 20201 minute to read

CartesianSeries provides the following methods to get a collection of data under a particular region.

  • C#
  • List<object> dataPoints = Series.GetDataPoints(rectangle);
    
    or
    
    List<object> dataPoints = Series.GetDataPoints(startX, endX, startY, endY);

    NOTE

    You can get the visible plotting region of the series in the chart using SeriesBounds property in run time.