SeriesBasePolarGetMinMaxFromAngleRange Method |
LightningChart .NET Help
Get minimum and maximum amplitude values within given angle range
Namespace:
Arction.Wpf.ChartingMVVM.SeriesPolar
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic bool GetMinMaxFromAngleRange(
out double minAmplitude,
out double maxAmplitude,
double minAngle,
double maxAngle
)
Public Function GetMinMaxFromAngleRange (
<OutAttribute> ByRef minAmplitude As Double,
<OutAttribute> ByRef maxAmplitude As Double,
minAngle As Double,
maxAngle As Double
) As Boolean
public:
bool GetMinMaxFromAngleRange(
[OutAttribute] double% minAmplitude,
[OutAttribute] double% maxAmplitude,
double minAngle,
double maxAngle
)
Parameters
- minAmplitude
- Type: SystemDouble
Minimum amplitude value - maxAmplitude
- Type: SystemDouble
Maximum amplitude value - minAngle
- Type: SystemDouble
Angle range start - maxAngle
- Type: SystemDouble
Angle range end
Return Value
Type:
BooleanTrue if values were successfully detected
See Also