Class ParametricLine
Line having additional Parameter that allows animating line between points using a single animation. It also allows separation between the animation and end points binding.
Inheritance
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public class ParametricLine : ContentControl
Constructors
ParametricLine()
Fields
LineStyleProperty
Identifies the LineStyle dependency property.
Declaration
public static readonly DependencyProperty LineStyleProperty
Field Value
System.Windows.DependencyProperty
|
ParameterProperty
Identifies the Parameter dependency property.
Declaration
public static readonly DependencyProperty ParameterProperty
Field Value
System.Windows.DependencyProperty
|
StrokeProperty
Identifies the Stroke dependency property.
Declaration
public static readonly DependencyProperty StrokeProperty
Field Value
System.Windows.DependencyProperty
|
StrokeThicknessProperty
Identifies the StrokeThickness dependency property.
Declaration
public static readonly DependencyProperty StrokeThicknessProperty
Field Value
System.Windows.DependencyProperty
|
X1Property
Identifies the X1 dependency property.
Declaration
public static readonly DependencyProperty X1Property
Field Value
System.Windows.DependencyProperty
|
X2Property
Identifies the X2 dependency property.
Declaration
public static readonly DependencyProperty X2Property
Field Value
System.Windows.DependencyProperty
|
Y1Property
Identifies the Y1 dependency property.
Declaration
public static readonly DependencyProperty Y1Property
Field Value
System.Windows.DependencyProperty
|
Y2Property
Identifies the Y2 dependency property.
Declaration
public static readonly DependencyProperty Y2Property
Field Value
System.Windows.DependencyProperty
|
Properties
LineStyle
Gets or sets the Style for the line.
Declaration
public Style LineStyle { get; set; }
Property Value
System.Windows.Style
The Style for the line. |
Parameter
Gets or sets the parameter of the line.
Declaration
public double Parameter { get; set; }
Property Value
System.Double
The parameter of the line. |
Stroke
Gets or sets the stroke used with that line.
Declaration
public Brush Stroke { get; set; }
Property Value
System.Windows.Media.Brush
The stroke used with that line. |
StrokeThickness
Gets or sets the thickness of the stroke.
Declaration
public double StrokeThickness { get; set; }
Property Value
System.Double
The width of the stroke. |
X1
Gets or sets the X1 value of the ParametricLine.
Declaration
public double X1 { get; set; }
Property Value
System.Double
The X1 value of the ParametricLine. |
X2
Gets or sets the X2 value of the ParametricLine.
Declaration
public double X2 { get; set; }
Property Value
System.Double
The X2 value of the ParametricLine. |
Y1
Gets or sets the Y1 value of the ParametricLine.
Declaration
public double Y1 { get; set; }
Property Value
System.Double
The Y1 value of the ParametricLine. |
Y2
Gets or sets the Y2 value of the ParametricLine.
Declaration
public double Y2 { get; set; }
Property Value
System.Double
The Y2 value of the ParametricLine. |
Methods
OnApplyTemplate()
When overridden in a derived class, is invoked whenever application code or internal processes call System.Windows.FrameworkElement.ApplyTemplate.
Declaration
public override void OnApplyTemplate()