Class SeriesBase
Base type for all chart series providing shared title, outline, fill, cloning, and change notification.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Model.Drawing.Charts
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public abstract class SeriesBase
Constructors
SeriesBase()
Properties
Fill
Gets or sets the fill styling for series shapes and markers.
Declaration
public Fill Fill { get; set; }
Property Value
|
Fill
|
Outline
Gets the outline styling for the series (stroke), affecting lines and borders.
Declaration
public Outline Outline { get; }
Property Value
|
Outline
|
SeriesType
Gets the series kind used to select rendering and data semantics.
Declaration
public abstract SeriesType SeriesType { get; }
Property Value
|
SeriesType
|
Title
Gets or sets the display title for the series, used in legends and labels.
Declaration
public Title Title { get; set; }
Property Value
|
Title
|
Methods
Clone()
Create a deep copy of this series, including style and data configuration.
Declaration
public SeriesBase Clone()
Returns
|
SeriesBase
The deep copy of the object. |