Class
ChartScaleAnimation

Chart ScaleAnimation which wraps ScaleAnimation class.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

cs-api-definition
public class ChartScaleAnimation : ChartAnimationBase

Inheritance: objectChartAnimationBaseChartScaleAnimation

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

Constructors

ChartScaleAnimation()

Declaration

cs-api-definition
public ChartScaleAnimation()

Fields

MaxScaleProperty

Identifies the MaxScale property.

Declaration

cs-api-definition
public static readonly DependencyProperty MaxScaleProperty

Field Value

DependencyProperty

MinScaleProperty

Identifies the MinScale property.

Declaration

cs-api-definition
public static readonly DependencyProperty MinScaleProperty

Field Value

DependencyProperty

RenderTransformOriginProperty

Identifies the RenderTransformOriginProperty property.

Declaration

cs-api-definition
public static readonly DependencyProperty RenderTransformOriginProperty

Field Value

DependencyProperty

ScaleModeProperty

Identifies the ScaleMode property.

Declaration

cs-api-definition
public static readonly DependencyProperty ScaleModeProperty

Field Value

DependencyProperty

Properties

MaxScale

The maximum (final) scale of the animation.

Declaration

cs-api-definition
public double MaxScale { get; set; }

Property Value

double

MinScale

The minimum (initial) scale of the animation.

Declaration

cs-api-definition
public double MinScale { get; set; }

Property Value

double

RenderTransformOrigin

Specifies how the center point of the scaling.

Declaration

cs-api-definition
public Point? RenderTransformOrigin { get; set; }

Property Value

Point?

ScaleMode

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

Declaration

cs-api-definition
public ScaleMode ScaleMode { get; set; }

Property Value

ScaleMode

Methods

BuildPointAnimation(FrameworkElement, DataPoint, RadRect)

Occurs when RadAnimation is being built for point animations.

Declaration

cs-api-definition
protected override 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

Overrides ChartAnimationBase.BuildPointAnimation(FrameworkElement, DataPoint, RadRect)

BuildSeriesAnimation(FrameworkElement, RadRect)

Occurs when RadAnimation is being built for series animation.

Declaration

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

Parameters

seriesAnimationTarget

FrameworkElement

The path describing the series.

plotAreaClip

RadRect

The plotAreaClip of the chart.

Returns

RadAnimation

Overrides ChartAnimationBase.BuildSeriesAnimation(FrameworkElement, RadRect)