Class ChartAnimationBase
Base class for chart animations applicable to series or point visuals.
Inheritance
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class ChartAnimationBase : DependencyObject
Constructors
ChartAnimationBase()
Fields
DelayProperty
Identifies the Delay property.
Declaration
public static readonly DependencyProperty DelayProperty
Field Value
System.Windows.DependencyProperty
|
DurationProperty
Identifies the Duration property.
Declaration
public static readonly DependencyProperty DurationProperty
Field Value
System.Windows.DependencyProperty
|
EasingProperty
Identifies the Easing property.
Declaration
public static readonly DependencyProperty EasingProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Delay
Gets or sets the delay of this chart animation instance.
Declaration
public TimeSpan Delay { get; set; }
Property Value
System.TimeSpan
|
Duration
Gets or sets the duration of this chart animation instance.
Declaration
public TimeSpan Duration { get; set; }
Property Value
System.TimeSpan
|
Easing
Gets or sets the easing function used in this chart animation instance.
Declaration
public IEasingFunction Easing { get; set; }
Property Value
System.Windows.Media.Animation.IEasingFunction
|
Methods
BuildPointAnimation(FrameworkElement, DataPoint, RadRect)
Occurs when RadAnimation is being built for point animations.
Declaration
protected virtual RadAnimation BuildPointAnimation(FrameworkElement visual, DataPoint point, RadRect plotAreaClip)
Parameters
System.Windows.FrameworkElement
visual
The element that is visualized for the point. |
DataPoint
point
The datapoint. |
RadRect
plotAreaClip
The plotAreaClip of the chart. |
Returns
RadAnimation
|
BuildSeriesAnimation(FrameworkElement, RadRect)
Occurs when RadAnimation is being built for series animation.
Declaration
protected virtual RadAnimation BuildSeriesAnimation(FrameworkElement seriesAnimationTarget, RadRect plotAreaClip)
Parameters
System.Windows.FrameworkElement
seriesAnimationTarget
The path describing the series. |
RadRect
plotAreaClip
The plotAreaClip of the chart. |
Returns
RadAnimation
|