PointLineSeriesGetMinMaxFromXRange Method |
LightningChart .NET Help
Get min and max Y value within given X range
Namespace:
Arction.Wpf.ChartingMVVM.SeriesXY
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic override bool GetMinMaxFromXRange(
out double yMin,
out double yMax,
double xRangeMin,
double xRangeMax,
bool ignoreZeros
)
Public Overrides Function GetMinMaxFromXRange (
<OutAttribute> ByRef yMin As Double,
<OutAttribute> ByRef yMax As Double,
xRangeMin As Double,
xRangeMax As Double,
ignoreZeros As Boolean
) As Boolean
public:
virtual bool GetMinMaxFromXRange(
[OutAttribute] double% yMin,
[OutAttribute] double% yMax,
double xRangeMin,
double xRangeMax,
bool ignoreZeros
) override
Parameters
- yMin
- Type: SystemDouble
Minimum Y value - yMax
- Type: SystemDouble
Maximum Y value - xRangeMin
- Type: SystemDouble
X range start - xRangeMax
- Type: SystemDouble
X range end - ignoreZeros
- Type: SystemBoolean
Ignore zeros
Return Value
Type:
BooleanTrue if values were successfully detected
See Also