AxisYGetBarsMinMaxOfThisYAxis Method |
LightningChart .NET Help
Get bar series minimum and maximum value, bound to this Y axis.
If stacked bar view is used, returns the highest stack sum.
Namespace:
Arction.Wpf.ChartingMVVM.Axes
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic bool GetBarsMinMaxOfThisYAxis(
out double totalMin,
out double totalMax,
bool ignoreZeros
)
Public Function GetBarsMinMaxOfThisYAxis (
<OutAttribute> ByRef totalMin As Double,
<OutAttribute> ByRef totalMax As Double,
ignoreZeros As Boolean
) As Boolean
public:
bool GetBarsMinMaxOfThisYAxis(
[OutAttribute] double% totalMin,
[OutAttribute] double% totalMax,
bool ignoreZeros
)
Parameters
- totalMin
- Type: SystemDouble
Total minimum. - totalMax
- Type: SystemDouble
Total maximum. - ignoreZeros
- Type: SystemBoolean
Ignore zeros.
Return Value
Type:
BooleanTrue if successfully got.
See Also