Click or drag to resize

FreeformPointLineSeriesGetMinMaxFromXRangeIgnoreValue Method

LightningChart .NET Help
This is similar to GetMinMaxFromXRange, but tailored for Series with DataBreaking. Get min and max Y value within given X range, but Ignore some values (gap defining value).

Namespace:  Arction.WinForms.Charting.SeriesXY
Assembly:  Arction.WinForms.Charting.LightningChart (in Arction.WinForms.Charting.LightningChart.dll) Version: 10.3.1
Syntax
public override bool GetMinMaxFromXRangeIgnoreValue(
	out double yMin,
	out double yMax,
	double xRangeMin,
	double xRangeMax,
	double dIgnoreValue
)

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: Boolean
True if values were successfully detected.
See Also