New to Telerik UI for WPFStart a free 30-day trial

Custom RadAnimation for animating the AngleRange property of PieSeries.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public class AngleRangeAnimation : RadAnimation

Inheritance: objectRadAnimationAngleRangeAnimation

Inherited Members RadAnimation.UpdateAnimation(FrameworkElement, Storyboard, params object[])RadAnimation.AnimationNameRadAnimation.RepeatBehaviorRadAnimation.AutoReverseRadAnimation.SpeedRatio

Constructors

C#
public AngleRangeAnimation()

Properties

The Duration of the animation.

C#
public TimeSpan Duration { get; set; }

Easing

IEasingFunction

The easing function of the animation.

C#
public IEasingFunction Easing { get; set; }

The initial value of the start angle.

C#
public double InitialStartAngle { get; set; }

The initial value of the sweep angle.

C#
public double InitialSweepAngle { get; set; }

Methods

When overridden in a derived class this method is called when the animation for an instance of a control needs to be created.

C#
public override Storyboard CreateAnimation(FrameworkElement control)
Parameters:controlFrameworkElement

The control for which the animation is needed.

Returns:

Storyboard

The newly created animation.

Overrides: RadAnimation.CreateAnimation(FrameworkElement)