BezierDataPoint
Definition
Namespace:Telerik.Charting
Assembly:Telerik.WinControls.ChartView.dll
Syntax:
public class BezierDataPoint : ScatterDataPoint, IDisposable, INotifyPropertyChanged
Inheritance: objectDisposableObjectPropertyBagObjectChartNodeDataPointScatterDataPointBezierDataPoint...
Implements:
Inherited Members
Constructors
Initializes a new instance of the BezierDataPoint class.
public BezierDataPoint()
Initializes a new instance of the BezierDataPoint class.
public BezierDataPoint(double x, double y, double controlPoint1X, double controlPoint1Y, double controlPoint2X, double controlPoint2Y)
The x.
ydoubleThe y.
controlPoint1XdoubleThe control point1 X.
controlPoint1YdoubleThe control point1 Y.
controlPoint2XdoubleThe control point2 X.
controlPoint2YdoubleThe control point2 Y.
Properties
Gets or sets the control point1 layout slot.
public RadRect ControlPoint1LayoutSlot { get; }
The control point1 layout slot.
Gets or sets the value that is provided for the X-axis of the first control point.
[TypeConverter(typeof(StringToDoubleConverter))]
public double ControlPoint1XValue { get; set; }
Gets or sets the value that is provided for the Y-axis of the first control point.
[TypeConverter(typeof(StringToDoubleConverter))]
public double ControlPoint1YValue { get; set; }
Gets or sets the control point2 layout slot.
public RadRect ControlPoint2LayoutSlot { get; }
The control point2 layout slot.
Gets or sets the value that is provided for the X-axis of the second control point.
[TypeConverter(typeof(StringToDoubleConverter))]
public double ControlPoint2XValue { get; set; }
Gets or sets the value that is provided for the Y-axis of the second control point.
[TypeConverter(typeof(StringToDoubleConverter))]
public double ControlPoint2YValue { get; set; }