New to Telerik Document ProcessingStart a free 30-day trial

Base type for all chart series providing shared title, outline, fill, cloning, and change notification.

Definition

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

Assembly:Telerik.Windows.Documents.Core.dll

Syntax:

C#
public abstract class SeriesBase

Inheritance: objectSeriesBase

Derived Classes: CategorySeriesBasePointSeriesBase

Constructors

Initializes a new instance of the SeriesBase class.

C#
protected SeriesBase()

Methods

Create a deep copy of this series, including style and data configuration.

C#
public SeriesBase Clone()
Returns:

SeriesBase

The deep copy of the object.

Properties

Gets or sets the fill styling for series shapes and markers.

C#
public Fill Fill { get; set; }

Gets the outline styling for the series (stroke), affecting lines and borders.

C#
public Outline Outline { get; }

Gets the series kind used to select rendering and data semantics.

C#
public abstract SeriesType SeriesType { get; }

Gets or sets the display title for the series, used in legends and labels.

C#
public Title Title { get; set; }