wpf-devexpress-dot-xpf-dot-charts-dot-boxplotseries2d-ddb2b745.md
Specifies an animation effect for the Box Plot mean line.
Namespace : DevExpress.Xpf.Charts
Assembly : DevExpress.Xpf.Charts.v25.2.dll
NuGet Package : DevExpress.Wpf.Charts
public Line2DAnimationBase SeriesAnimation { get; set; }
Public Property SeriesAnimation As Line2DAnimationBase
| Type | Description |
|---|---|
| Line2DAnimationBase |
A SeriesAnimationBase descendant that specifies the mean line animation type.
|
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:
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