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 Scatter
Declaration
public ScatterDataPoint(double x, double y)
Parameters
System. The x. |
System. The y. |
Properties
IsInPlotRange
Determines whether the data point may be plotted correctly.
Declaration
public override bool IsInPlotRange { get; }
Property Value
System.
|
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.
|
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.
|