PolygonSeriesGetMinMaxValues Method |
LightningChart .NET Help
Get minimum and maximum X and Y values.
Namespace:
Arction.WinForms.Charting.SeriesXY
Assembly:
Arction.WinForms.Charting.LightningChart (in Arction.WinForms.Charting.LightningChart.dll) Version: 10.3.1
Syntaxpublic bool GetMinMaxValues(
out double xMin,
out double xMax,
out double yMin,
out double yMax
)
Public Function GetMinMaxValues (
<OutAttribute> ByRef xMin As Double,
<OutAttribute> ByRef xMax As Double,
<OutAttribute> ByRef yMin As Double,
<OutAttribute> ByRef yMax As Double
) As Boolean
public:
bool GetMinMaxValues(
[OutAttribute] double% xMin,
[OutAttribute] double% xMax,
[OutAttribute] double% yMin,
[OutAttribute] double% yMax
)
Parameters
- xMin
- Type: SystemDouble
X minimum. - xMax
- Type: SystemDouble
X maximum. - yMin
- Type: SystemDouble
Y minimum. - yMax
- Type: SystemDouble
Y maximum.
Return Value
Type:
BooleanTrue if point count is greater than 0
See Also