BoxPlotSeries2D.SeriesAnimation Property
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v21.1.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
Property Value
Type | Description |
---|---|
Line2DAnimationBase | A SeriesAnimationBase descendant that specifies the mean line animation type. |
Remarks
Use the ChartControl.AnimationMode property to enable the chart animation.
Set the SeriesAnimation property to define an animation effect for the Box Plot mean line. The following values are available:
- Line2DBlowUpAnimation
- Line2DSlideFromBottomAnimation
- Line2DSlideFromLeftAnimation
- Line2DSlideFromRightAnimation
- Line2DSlideFromTopAnimation
- Line2DStretchFromFarAnimation
- Line2DStretchFromNearAnimation
- Line2DUnwindAnimation
- Line2DUnwrapHorizontallyAnimation
- Line2DUnwrapVerticallyAnimation
The markup below uses the Line2DSlideFromTopAnimation object to animate the mean line:
<dxc:BoxPlotSeries2D>
<dxc:BoxPlotSeries2D.SeriesAnimation>
<dxc:Line2DSlideFromTopAnimation Duration="0:0:1.5"/>
</dxc:BoxPlotSeries2D.SeriesAnimation>
<!--...-->
</dxc:BoxPlotSeries2D>
Use the BoxPlotSeries2D.PointAnimation property to define animation for series points.
See Also