ZedGraph LogoZedGraph Class Library Documentation
GetRange Method (xMin, xMax, yMin, yMax, ignoreInitial, isBoundedRanges, pane)
NamespacesZedGraphCurveItemGetRange(Double%, Double%, Double%, Double%, Boolean, Boolean, GraphPane)
Go through the list of PointPair data values for this CurveItem and determine the minimum and maximum values in the data.
Declaration Syntax
C#Visual BasicVisual 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
)
Parameters
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.
See Also

Assembly: ZedGraph (Module: ZedGraph) Version: 5.1.0.621