Class BezierDataPoint
Inheritance
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class BezierDataPoint : ScatterDataPoint, IDisposable, INotifyPropertyChanged
Constructors
BezierDataPoint()
BezierDataPoint(Double, Double, Double, Double, Double, Double)
Initializes a new instance of the BezierDataPoint class.
Declaration
public BezierDataPoint(double x, double y, double controlPoint1X, double controlPoint1Y, double controlPoint2X, double controlPoint2Y)
Parameters
System.Double
x
The x. |
System.Double
y
The y. |
System.Double
controlPoint1X
The control point1 X. |
System.Double
controlPoint1Y
The control point1 Y. |
System.Double
controlPoint2X
The control point2 X. |
System.Double
controlPoint2Y
The control point2 Y. |
Properties
ControlPoint1LayoutSlot
Gets or sets the control point1 layout slot.
Declaration
public RadRect ControlPoint1LayoutSlot { get; }
Property Value
RadRect
The control point1 layout slot. |
ControlPoint1XValue
Gets or sets the value that is provided for the X-axis of the first control point.
Declaration
public double ControlPoint1XValue { get; set; }
Property Value
System.Double
|
ControlPoint1YValue
Gets or sets the value that is provided for the Y-axis of the first control point.
Declaration
public double ControlPoint1YValue { get; set; }
Property Value
System.Double
|
ControlPoint2LayoutSlot
Gets or sets the control point2 layout slot.
Declaration
public RadRect ControlPoint2LayoutSlot { get; }
Property Value
RadRect
The control point2 layout slot. |
ControlPoint2XValue
Gets or sets the value that is provided for the X-axis of the second control point.
Declaration
public double ControlPoint2XValue { get; set; }
Property Value
System.Double
|
ControlPoint2YValue
Gets or sets the value that is provided for the Y-axis of the second control point.
Declaration
public double ControlPoint2YValue { get; set; }
Property Value
System.Double
|