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.Windows.Controls.Chart.dll
Syntax
public class ScatterDataPoint : DataPoint, INotifyPropertyChanged, IDataPoint
Constructors
ScatterDataPoint()
Declaration
public ScatterDataPoint()
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 Y-axis of the cartesian chart.
Declaration
public Nullable<double> YValue { get; set; }
Property Value
System.Nullable<System.Double>
|