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

Base class for chart animations applicable to series or point visuals.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public class ChartAnimationBase : DependencyObject

Inheritance: objectChartAnimationBase

Derived Classes: ChartFadeAnimationChartMoveAnimationChartRevealAnimationChartScaleAnimationPieChartAngleRangeAnimationPieChartRadiusFactorAnimation...

Constructors

Initializes a new instance of the ChartAnimationBase class.

C#
public ChartAnimationBase()

Fields

DelayProperty

DependencyProperty

Identifies the Delay property.

C#
public static readonly DependencyProperty DelayProperty

DurationProperty

DependencyProperty

Identifies the Duration property.

C#
public static readonly DependencyProperty DurationProperty

EasingProperty

DependencyProperty

Identifies the Easing property.

C#
public static readonly DependencyProperty EasingProperty

Properties

Gets or sets the delay of this chart animation instance.

C#
public TimeSpan Delay { get; set; }

Gets or sets the duration of this chart animation instance.

C#
public TimeSpan Duration { get; set; }

Easing

IEasingFunction

Gets or sets the easing function used in this chart animation instance.

C#
public IEasingFunction Easing { get; set; }

Methods

Occurs when RadAnimation is being built for point animations.

C#
protected virtual RadAnimation BuildPointAnimation(FrameworkElement visual, DataPoint point, RadRect plotAreaClip)
Parameters:visualFrameworkElement

The element that is visualized for the point.

pointDataPoint

The datapoint.

plotAreaClipRadRect

The plotAreaClip of the chart.

Returns:

RadAnimation

Occurs when RadAnimation is being built for series animation.

C#
protected virtual RadAnimation BuildSeriesAnimation(FrameworkElement seriesAnimationTarget, RadRect plotAreaClip)
Parameters:seriesAnimationTargetFrameworkElement

The path describing the series.

plotAreaClipRadRect

The plotAreaClip of the chart.

Returns:

RadAnimation