New to Telerik Document ProcessingStart a free 30-day trial

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:

C#
public class ScatterSeries : PointSeriesBase

Inheritance: objectSeriesBasePointSeriesBaseScatterSeries

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

Constructors

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

C#
public ScatterSeries()

Properties

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

C#
public bool IsSmooth { get; set; }

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

C#
public Marker Marker { get; set; }

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

C#
public ScatterStyle ScatterStyle { get; }

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

C#
public override SeriesType SeriesType { get; }

Overrides: SeriesBase.SeriesType