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

Chart ScaleAnimation which wraps ScaleAnimation class.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public class ChartScaleAnimation : ChartAnimationBase

Inheritance: objectChartAnimationBaseChartScaleAnimation

Inherited Members ChartAnimationBase.DurationPropertyChartAnimationBase.DelayPropertyChartAnimationBase.EasingPropertyChartAnimationBase.DurationChartAnimationBase.DelayChartAnimationBase.Easing...

Constructors

C#
public ChartScaleAnimation()

Fields

MaxScaleProperty

DependencyProperty

Identifies the MaxScale property.

C#
public static readonly DependencyProperty MaxScaleProperty

MinScaleProperty

DependencyProperty

Identifies the MinScale property.

C#
public static readonly DependencyProperty MinScaleProperty

Identifies the RenderTransformOriginProperty property.

C#
public static readonly DependencyProperty RenderTransformOriginProperty

ScaleModeProperty

DependencyProperty

Identifies the ScaleMode property.

C#
public static readonly DependencyProperty ScaleModeProperty

Properties

The maximum (final) scale of the animation.

C#
public double MaxScale { get; set; }

The minimum (initial) scale of the animation.

C#
public double MinScale { get; set; }

Specifies how the center point of the scaling.

C#
public Point? RenderTransformOrigin { get; set; }

The orientation of the animation. Could be vertical , horizontal or both.

C#
public ScaleMode ScaleMode { get; set; }

Methods

Occurs when RadAnimation is being built for point animations.

C#
protected override 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

Overrides: ChartAnimationBase.BuildPointAnimation(FrameworkElement, DataPoint, RadRect)

Occurs when RadAnimation is being built for series animation.

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

The path describing the series.

plotAreaClipRadRect

The plotAreaClip of the chart.

Returns:

RadAnimation

Overrides: ChartAnimationBase.BuildSeriesAnimation(FrameworkElement, RadRect)