Go through the list of PointPair data values for this CurveItem
and determine the minimum and maximum values in the data.
| C# | Visual Basic | Visual C++ |
public virtual void GetRange( out double xMin, out double xMax, out double yMin, out double yMax, bool ignoreInitial, bool isBoundedRanges, GraphPane pane )
Public Overridable Sub GetRange ( _ <OutAttribute> ByRef xMin As Double, _ <OutAttribute> ByRef xMax As Double, _ <OutAttribute> ByRef yMin As Double, _ <OutAttribute> ByRef yMax As Double, _ ignoreInitial As Boolean, _ isBoundedRanges As Boolean, _ pane As GraphPane _ )
public: virtual void GetRange ( [OutAttribute] double% xMin, [OutAttribute] double% xMax, [OutAttribute] double% yMin, [OutAttribute] double% yMax, bool ignoreInitial, bool isBoundedRanges, GraphPane^ pane )
- xMin (Double%)
- The minimum X value in the range of data
- xMax (Double%)
- The maximum X value in the range of data
- yMin (Double%)
- The minimum Y value in the range of data
- yMax (Double%)
- The maximum Y value in the range of data
- ignoreInitial (Boolean)
- ignoreInitial is a boolean value that affects the data range that is considered for the automatic scale ranging (see IsIgnoreInitial). If true, then initial data points where the Y value is zero are not included when automatically determining the scale Min, Max, and MajorStep size. All data after the first non-zero Y value are included.
- isBoundedRanges (Boolean)
- Determines if the auto-scaled axis ranges will subset the data points based on any manually set scale range values.
- pane (GraphPane)
- A reference to the GraphPane object that is the parent or owner of this object.
