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.
Inherited Members
Namespace: Telerik.Windows.Documents.Model.Drawing.Charts
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class ScatterSeries : PointSeriesBase, ISupportMarker, ISupportSmooth
Constructors
ScatterSeries()
Create a scatter series that plots paired numeric X and Y values, with optional connecting lines, smoothing, and point markers.
Declaration
public ScatterSeries()
Properties
IsSmooth
Gets or sets whether connecting lines are rendered as a smoothed curve, which influences interpolation and the resulting style.
Declaration
public bool IsSmooth { get; set; }
Property Value
|
System.Boolean
|
Marker
Gets or sets the point marker appearance; a visible fill enables markers and affects the computed style.
Declaration
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
public ScatterStyle ScatterStyle { get; }
Property Value
|
ScatterStyle
|
SeriesType
Gets the series type reported to chart consumers; this value is always Scatter.
Declaration
public override SeriesType SeriesType { get; }
Property Value
|
SeriesType
|