Skip to main content
All docs
V25.1
  • BoxPlotSeries2D.SeriesAnimation Property

    Specifies an animation effect for the Box Plot mean line.

    Namespace: DevExpress.Xpf.Charts

    Assembly: DevExpress.Xpf.Charts.v25.1.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