Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

AnimationAutoStartMode Enum

Lists the values that are used to define the auto-start mode for a series animation.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v24.2.dll

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public enum AnimationAutoStartMode

#Members

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).

#Related API Members

The following properties accept/return AnimationAutoStartMode values:

#Remarks

Values listed by the AnimationAutoStartMode enumeration are used to set the Series.AnimationAutoStartMode property.

Important

This property is in effect only if ChartControl.AnimationMode is set to the OnLoad or OnDataChanged value.

Note

When the Series.AnimationAutoStartMode property is set to SetFinalState or SetStartState, the animation will not start automatically and it should be started manually. To do this, call the ChartControl.Animate method (launches animations of all series) or the Series.Animate method, which runs animation of the individual series.

See Also