ClassScatterSeries
Represents a scatter chart series that displays data points as individual markers positioned by two numeric values.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.ChartView.dll
Syntax:
public class ScatterSeries : CartesianPointSeries, IDisposable, INotifyPropertyChanged, ICustomTypeDescriptor, IStylableElement, IStylableNode, IFillElement, IBorderElement, IBoxStyle, IBoxElement, IShapedElement, IChartSeries, IChartElementPresenter, IAxisProvider
Inheritance: objectDisposableObjectRadObjectUIChartElementChartSeriesCartesianSeriesCartesianPointSeriesScatterSeries
Derived Classes:
Implements:
Inherited Members
Constructors
ScatterSeries()
Initializes a new instance of the ScatterSeries class.
Declaration
public ScatterSeries()
ScatterSeries(SizeF)
Initializes a new instance of the ScatterSeries class with the specified point size.
Declaration
public ScatterSeries(SizeF pointSize)
Parameters
pointSize
The size of the data point markers.
ScatterSeries(string, string)
Initializes a new instance of the ScatterSeries class with the specified X and Y value members.
Properties
Model
Gets the data model that represents the scatter series structure and behavior.
Declaration
public override ChartSeriesModel Model { get; }
Property Value
Overrides
XValueMember
Gets or sets the name of the data source property that provides X coordinate values for the scatter points.
Declaration
[Browsable(true)]
public string XValueMember { get; set; }
Property Value
YValueMember
Gets or sets the name of the data source property that provides Y coordinate values for the scatter points.
Declaration
[Browsable(true)]
public string YValueMember { get; set; }
Property Value
Methods
BindMembers()
Binds the X and Y data members to the appropriate data point properties.
Declaration
protected override void BindMembers()
Overrides
CreateDefaultDataPoint()
Creates a default scatter data point for the series.
CreateModel()
Creates the data model for the scatter series and initializes the data point collection.
Declaration
protected override ChartDataPointCollection CreateModel()
Returns
A ChartDataPointCollection containing the scatter data points.
Overrides
CreatePointElement(DataPoint)
Creates a visual element for the specified scatter data point.
Declaration
protected override DataPointElement CreatePointElement(DataPoint point)
Parameters
point
The data point for which to create the visual element.
Returns
A DataPointElement representing the scatter point marker.
Overrides
GetDefaultTrackballTextForPoint(DataPoint)
Gets the default trackball text for the specified scatter data point.
ValidatePoint(DataPoint)
Validates that the specified data point is compatible with this scatter series.
Declaration
protected override void ValidatePoint(DataPoint item)
Parameters
item
The data point to validate.
Overrides