ScatterSeries
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
Initializes a new instance of the ScatterSeries class.
public ScatterSeries()
Initializes a new instance of the ScatterSeries class with the specified point size.
public ScatterSeries(SizeF pointSize)
The size of the data point markers.
Initializes a new instance of the ScatterSeries class with the specified X and Y value members.
Properties
Gets the data model that represents the scatter series structure and behavior.
public override ChartSeriesModel Model { get; }
Overrides:
Gets or sets the name of the data source property that provides X coordinate values for the scatter points.
[Browsable(true)]
public string XValueMember { get; set; }
Gets or sets the name of the data source property that provides Y coordinate values for the scatter points.
[Browsable(true)]
public string YValueMember { get; set; }
Methods
Binds the X and Y data members to the appropriate data point properties.
protected override void BindMembers()
Overrides:
Creates the data model for the scatter series and initializes the data point collection.
protected override ChartDataPointCollection CreateModel()
A ChartDataPointCollection containing the scatter data points.
Overrides:
Creates a visual element for the specified scatter data point.
protected override DataPointElement CreatePointElement(DataPoint point)
The data point for which to create the visual element.
Returns:A DataPointElement representing the scatter point marker.
Overrides:
Gets the default trackball text for the specified scatter data point.
Validates that the specified data point is compatible with this scatter series.
protected override void ValidatePoint(DataPoint item)
The data point to validate.
Overrides: