SampleDataSeriesGetMinMaxFromXRangeIgnoreValue Method |
LightningChart .NET Help
This is similar to GetMinMaxFromXRange, but tailored for Series with DataBreaking.
Get minimum and maximum Y value within given X range, but Ignore some values (gap defining value).
Namespace:
Arction.Wpf.ChartingMVVM.SeriesXY
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic override bool GetMinMaxFromXRangeIgnoreValue(
out double yMin,
out double yMax,
double xRangeMin,
double xRangeMax,
double dIgnoreValue
)
Public Overrides Function GetMinMaxFromXRangeIgnoreValue (
<OutAttribute> ByRef yMin As Double,
<OutAttribute> ByRef yMax As Double,
xRangeMin As Double,
xRangeMax As Double,
dIgnoreValue As Double
) As Boolean
public:
virtual bool GetMinMaxFromXRangeIgnoreValue(
[OutAttribute] double% yMin,
[OutAttribute] double% yMax,
double xRangeMin,
double xRangeMax,
double dIgnoreValue
) 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. - dIgnoreValue
- Type: SystemDouble
Gap defining value.
Return Value
Type:
BooleanTrue if values were successfully detected.
See Also