Class ChartScaleAnimation
Chart ScaleAnimation which wraps ScaleAnimation class.
Inherited Members
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class ChartScaleAnimation : ChartAnimationBase
Constructors
ChartScaleAnimation()
Declaration
public ChartScaleAnimation()
Fields
MaxScaleProperty
Identifies the MaxScale property.
Declaration
public static readonly DependencyProperty MaxScaleProperty
Field Value
System.Windows.DependencyProperty
|
MinScaleProperty
Identifies the MinScale property.
Declaration
public static readonly DependencyProperty MinScaleProperty
Field Value
System.Windows.DependencyProperty
|
RenderTransformOriginProperty
Identifies the RenderTransformOriginProperty property.
Declaration
public static readonly DependencyProperty RenderTransformOriginProperty
Field Value
System.Windows.DependencyProperty
|
ScaleModeProperty
Identifies the ScaleMode property.
Declaration
public static readonly DependencyProperty ScaleModeProperty
Field Value
System.Windows.DependencyProperty
|
Properties
MaxScale
The maximum (final) scale of the animation.
Declaration
public double MaxScale { get; set; }
Property Value
System.Double
|
MinScale
The minimum (initial) scale of the animation.
Declaration
public double MinScale { get; set; }
Property Value
System.Double
|
RenderTransformOrigin
Specifies how the center point of the scaling.
Declaration
public Nullable<Point> RenderTransformOrigin { get; set; }
Property Value
System.Nullable<System.Windows.Point>
|
ScaleMode
The orientation of the animation. Could be vertical , horizontal or both.
Declaration
public ScaleMode ScaleMode { get; set; }
Property Value
ScaleMode
|
Methods
BuildPointAnimation(FrameworkElement, DataPoint, RadRect)
Occurs when RadAnimation is being built for point animations.
Declaration
protected override 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
|
Overrides
BuildSeriesAnimation(FrameworkElement, RadRect)
Occurs when RadAnimation is being built for series animation.
Declaration
protected override 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
|