corelibraries-devexpress-dot-xtracharts-dot-movingaverage.md
Determines whether to display a Moving Average, Envelope, or both.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public MovingAverageKind Kind { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)>
Public Property Kind As MovingAverageKind
| Type | Description |
|---|---|
| MovingAverageKind |
A MovingAverageKind enumeration value.
|
Available values:
| Name | Description |
|---|---|
| MovingAverage |
Only the Moving Average is shown.
| | Envelope |
Only the Envelope is shown.
| | MovingAverageAndEnvelope |
Both the Moving Average and Envelope are shown.
|
Use the Kind property, to define the kind of a Moving Average and Envelope technical indicator.
| Kind = MovingAverage | Kind = MovingAverageAndEnvelope | 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