Skip to main content
All docs
V24.2

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

BoxPlotSeries2D.SeriesAnimation Property

Specifies an animation effect for the Box Plot mean line.

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

#Declaration

public Line2DAnimationBase SeriesAnimation { get; set; }

#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:

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