New to Telerik Document ProcessingStart a free 30-day trial

Container for chart series, axes, title, and legend; use this to compose and clone chart definitions.

Definition

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

Assembly:Telerik.Windows.Documents.Core.dll

Syntax:

C#
public class DocumentChart

Inheritance: objectDocumentChart

Constructors

Create a new DocumentChart with no axes and an empty series group collection.

C#
public DocumentChart()

Methods

Creates a deep copy of this chart and returns a new instance with cloned series, axes, title, and legend.

C#
public DocumentChart Clone()
Returns:

DocumentChart

The deep copy of the object.

Properties

Gets or sets the legend associated with this chart, which controls category/series labeling.

C#
public Legend Legend { get; set; }

Gets or sets the primary axes used by the first series group, affecting scaling and layout.

C#
public AxisGroup PrimaryAxes { get; set; }

Gets or sets the secondary axes used for additional series groups in combo charts.

C#
public AxisGroup SecondaryAxes { get; set; }

Gets the collection of series groups that organize the chart’s data.

C#
public SeriesGroupCollection SeriesGroups { get; }

Gets or sets the chart title displayed above or near the plot area.

C#
public Title Title { get; set; }