Class DocumentChart
Container for chart series, axes, title, and legend; use this to compose and clone chart definitions.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Model.Drawing.Charts
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class DocumentChart
Constructors
DocumentChart()
Create a new DocumentChart with no axes and an empty series group collection.
Declaration
public DocumentChart()
Properties
Legend
Gets or sets the legend associated with this chart, which controls category/series labeling.
Declaration
public Legend Legend { get; set; }
Property Value
|
Legend
|
PrimaryAxes
Gets or sets the primary axes used by the first series group, affecting scaling and layout.
Declaration
public AxisGroup PrimaryAxes { get; set; }
Property Value
|
AxisGroup
|
SecondaryAxes
Gets or sets the secondary axes used for additional series groups in combo charts.
Declaration
public AxisGroup SecondaryAxes { get; set; }
Property Value
|
AxisGroup
|
SeriesGroups
Gets the collection of series groups that organize the chart’s data.
Declaration
public SeriesGroupCollection SeriesGroups { get; }
Property Value
|
SeriesGroupCollection
|
Title
Gets or sets the chart title displayed above or near the plot area.
Declaration
public Title Title { get; set; }
Property Value
|
Title
|
Methods
Clone()
Creates a deep copy of this chart and returns a new instance with cloned series, axes, title, and legend.
Declaration
public DocumentChart Clone()
Returns
|
DocumentChart
The deep copy of the object. |