Skip to main content
A newer version of this page is available. .

MovingAverage.Kind Property

Determines whether to display a Moving Average, Envelope, or both.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
[XtraSerializableProperty]
public MovingAverageKind Kind { get; set; }

Property Value

Type Description
MovingAverageKind

A MovingAverageKind enumeration value.

Available values:

Name Description
MovingAverage

Only the Moving Average is shown.

Kind_MovingAverage

Envelope

Only the Envelope is shown.

Kind_Envelope

MovingAverageAndEnvelope

Both the Moving Average and Envelope are shown.

Kind_MovingAverage

Remarks

Use the Kind property, to define the kind of a Moving Average and Envelope technical indicator.

Kind = MovingAverage Kind = MovingAverageAndEnvelope Kind = Envelope
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