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:
public class ScatterSeries : PointSeriesBase
Inheritance: objectSeriesBasePointSeriesBaseScatterSeries
Inherited Members
Constructors
Create a scatter series that plots paired numeric X and Y values, with optional connecting lines, smoothing, and point markers.
public ScatterSeries()
Properties
Gets or sets whether connecting lines are rendered as a smoothed curve, which influences interpolation and the resulting style.
public bool IsSmooth { get; set; }
Gets or sets the point marker appearance; a visible fill enables markers and affects the computed style.
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.
public ScatterStyle ScatterStyle { get; }
Gets the series type reported to chart consumers; this value is always Scatter.
public override SeriesType SeriesType { get; }
Overrides: