Class
ChartAnimationBase

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

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

cs-api-definition
public class ChartAnimationBase : DependencyObject

Inheritance: objectChartAnimationBase

Derived Classes: ChartFadeAnimationChartMoveAnimationChartRevealAnimationChartScaleAnimationPieChartAngleRangeAnimationPieChartRadiusFactorAnimation

Constructors

ChartAnimationBase()

Initializes a new instance of the ChartAnimationBase class.

Declaration

cs-api-definition
public ChartAnimationBase()

Fields

DelayProperty

Identifies the Delay property.

Declaration

cs-api-definition
public static readonly DependencyProperty DelayProperty

Field Value

DependencyProperty

DurationProperty

Identifies the Duration property.

Declaration

cs-api-definition
public static readonly DependencyProperty DurationProperty

Field Value

DependencyProperty

EasingProperty

Identifies the Easing property.

Declaration

cs-api-definition
public static readonly DependencyProperty EasingProperty

Field Value

DependencyProperty

Properties

Delay

Gets or sets the delay of this chart animation instance.

Declaration

cs-api-definition
public TimeSpan Delay { get; set; }

Property Value

TimeSpan

Duration

Gets or sets the duration of this chart animation instance.

Declaration

cs-api-definition
public TimeSpan Duration { get; set; }

Property Value

TimeSpan

Easing

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

Declaration

cs-api-definition
public IEasingFunction Easing { get; set; }

Property Value

IEasingFunction

Methods

BuildPointAnimation(FrameworkElement, DataPoint, RadRect)

Occurs when RadAnimation is being built for point animations.

Declaration

cs-api-definition
protected virtual RadAnimation BuildPointAnimation(FrameworkElement visual, DataPoint point, RadRect plotAreaClip)

Parameters

visual

FrameworkElement

The element that is visualized for the point.

point

DataPoint

The datapoint.

plotAreaClip

RadRect

The plotAreaClip of the chart.

Returns

RadAnimation

BuildSeriesAnimation(FrameworkElement, RadRect)

Occurs when RadAnimation is being built for series animation.

Declaration

cs-api-definition
protected virtual RadAnimation BuildSeriesAnimation(FrameworkElement seriesAnimationTarget, RadRect plotAreaClip)

Parameters

seriesAnimationTarget

FrameworkElement

The path describing the series.

plotAreaClip

RadRect

The plotAreaClip of the chart.

Returns

RadAnimation