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

IndicatorDirectedAnimationBase.Direction Property

Gets or sets the direction of an indicator animation.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[XtraSerializableProperty]
public AnimationDirection Direction { get; set; }

Property Value

Type Description
AnimationDirection

The value that specifies the direction of the animation.

Available values:

Name Description
FromLeft

Animation starts from the left boundary.

AnimationDirection.FromLeft

FromBottom

Animation starts from the bottom boundary.

AnimationDirection.FromBottom

FromRight

Animation starts from the right boundary.

AnimationDirection.FromRight

FromTop

Animation starts from the top boundary.

AnimationDirection.FromTop

Remarks

The following directions are available.

Direction Example Description
FromLeft IndicatorAnimationDirection-FromLeft Animation starts from the left boundary.
FromRight IndicatorAnimationDirection-FromRight Animation starts from the right boundary.
FromTop IndicatorAnimationDirection-FromTop Animation starts from the top boundary.
FromBottom IndicatorAnimationDirection-FromBottom Animation starts from the bottom boundary.
See Also