Class ScatterDataPoint
Represents a data point that may be visualized by a Scatter series in a CartesianChart. Generally this is a point that provides values for both X and Y axes and may be plotted by two numerical axes - Linear or Logarithmic.
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.ChartView.dll
Syntax
public class ScatterDataPoint : DataPoint, IDisposable, INotifyPropertyChanged
Constructors
ScatterDataPoint()
ScatterDataPoint(Double, Double)
Initializes a new instance of the ScatterDataPoint class.
Declaration
public ScatterDataPoint(double x, double y)
Parameters
System.Double
x
The x. |
System.Double
y
The y. |
Properties
IsInPlotRange
Determines whether the data point may be plotted correctly.
Declaration
public override bool IsInPlotRange { get; }
Property Value
System.Boolean
|
Overrides
XValue
Gets or sets the value that is provided for the X-axis of the cartesian chart.
Declaration
public double XValue { get; set; }
Property Value
System.Double
|
YValue
Gets or sets the value that is provided for the X-axis of the cartesian chart.
Declaration
public double? YValue { get; set; }
Property Value
System.Nullable<System.Double>
|