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

Series.AnimationAutoStartMode Property

Specifies the automatic start mode for the animation. This is a dependency property.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v19.1.dll

Declaration

public AnimationAutoStartMode AnimationAutoStartMode { get; set; }

Property Value

Type Description
AnimationAutoStartMode

An AnimationAutoStartMode enumeration value.

Available values:

Name Description
PlayOnce

The animation is played once. After that, the series receives its final state.

SetStartState

An animated element receives its start state (as it appears before the animation start). The element may be invisible in this mode.

SetFinalState

An animated element receives its final state (as it appears after the animation end).

Remarks

Use the AnimationAutoStartMode property to choose in which state a series should reside before the animation is triggered (e.g. when the ChartControl.AnimationMode property is turned on).

Note that setting the AnimationAutoStartMode to SetStartState may cause the series to be blank (because this is its pre-animation state).

See Also