Class
ScatterSeries

Scatter chart series for plotting paired numeric X/Y values; supports optional connecting lines, markers, and smoothing to control how data is visualized.

Definition

Namespace:Telerik.Windows.Documents.Model.Drawing.Charts

Assembly:Telerik.Windows.Documents.Core.dll

Syntax:

cs-api-definition
public class ScatterSeries : PointSeriesBase

Inheritance: objectSeriesBasePointSeriesBaseScatterSeries

Inherited Members PointSeriesBase.XValuesPointSeriesBase.YValuesSeriesBase.Clone()SeriesBase.TitleSeriesBase.OutlineSeriesBase.Fill

Constructors

ScatterSeries()

Create a scatter series that plots paired numeric X and Y values, with optional connecting lines, smoothing, and point markers.

Declaration

cs-api-definition
public ScatterSeries()

Properties

IsSmooth

Gets or sets whether connecting lines are rendered as a smoothed curve, which influences interpolation and the resulting style.

Declaration

cs-api-definition
public bool IsSmooth { get; set; }

Property Value

bool

Marker

Gets or sets the point marker appearance; a visible fill enables markers and affects the computed style.

Declaration

cs-api-definition
public Marker Marker { get; set; }

Property Value

Marker

ScatterStyle

Gets the computed visual style based on the presence of a line, markers, and smoothing, returning Line, LineMarker, Marker, Smooth, SmoothMarker, or None.

Declaration

cs-api-definition
public ScatterStyle ScatterStyle { get; }

Property Value

ScatterStyle

SeriesType

Gets the series type reported to chart consumers; this value is always Scatter.

Declaration

cs-api-definition
public override SeriesType SeriesType { get; }

Property Value

SeriesType

Overrides SeriesBase.SeriesType