MovingAverage.Kind Property
In This Article
Determines whether to display a Moving Average, Envelope, or both.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public MovingAverageKind Kind { get; set; }
#Property Value
Type | Description |
---|---|
Moving |
A Moving |
Available values:
Name | Description |
---|---|
Moving |
Only the Moving Average is shown. |
Envelope | Only the Envelope is shown. |
Moving |
Both the Moving Average and Envelope are shown. |
#Remarks
Use the Kind property, to define the kind of a Moving Average and Envelope technical indicator.
Kind = Moving |
Kind = Moving |
Kind = Envelope |
---|---|---|
![]() |
![]() |
![]() |
When the Kind property is set to either Envelope or MovingAverageAndEnvelope, you can adjust the Envelope options, via the MovingAverage.EnvelopeLineStyle, MovingAverage.EnvelopePercent and MovingAverage.EnvelopeColor properties.
See Also