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.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

cs-api-definition
public class ScatterDataPoint : DataPoint, IDisposable, INotifyPropertyChanged

Inheritance: objectDisposableObjectPropertyBagObjectChartNodeDataPointScatterDataPoint

Derived Classes: BezierDataPointBubbleDataPoint

Implements: IDisposableINotifyPropertyChanged

Inherited Members DataPoint.GetBoundValue<T>(int)DataPoint.SetBoundValue(int, object)DataPoint.InitBoundValues()DataPoint.SetDataItem(object)DataPoint.ContainsBoundValue(int)DataPoint.LabelDataPoint.DataItemDataPoint.IsSelectedChartNode.Arrange(RadRect, bool)ChartNode.Invalidate()ChartNode.SetValueCore(int, object)ChartNode.ClearValueCore(int)ChartNode.IsArrangeValidChartNode.NodeStateChartNode.IndexChartNode.CollectionIndexChartNode.IsTreeLoadedChartNode.LayoutSlotChartNode.ParentChartNode.PresenterChartNode.PropertyChangedPropertyBagObject.IsLocalValue(int)PropertyBagObject.GetValue(int)PropertyBagObject.SetValue(int, object)PropertyBagObject.ClearValue(int)PropertyBagObject.GetTypedValue<T>(int, T)PropertyBagObject.DisposeManagedResources()PropertyBagObject.PropertyStoreDisposableObject.Dispose()DisposableObject.DisposeUnmanagedResources()DisposableObject.IsDisposingDisposableObject.IsDisposedDisposableObject.EventsDisposableObject.DisposingDisposableObject.Disposed

Constructors

ScatterDataPoint()

Initializes a new instance of the ScatterDataPoint class.

Declaration

cs-api-definition
public ScatterDataPoint()

ScatterDataPoint(double, double)

Initializes a new instance of the ScatterDataPoint class.

Declaration

cs-api-definition
public ScatterDataPoint(double x, double y)

Parameters

x

double

The x.

y

double

The y.

Properties

IsInPlotRange

Determines whether the data point may be plotted correctly.

Declaration

cs-api-definition
[Browsable(false)]
public override bool IsInPlotRange { get; }

Property Value

bool

Overrides DataPoint.IsInPlotRange

XValue

Gets or sets the value that is provided for the X-axis of the cartesian chart.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double XValue { get; set; }

Property Value

double

YValue

Gets or sets the value that is provided for the X-axis of the cartesian chart.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double? YValue { get; set; }

Property Value

double?