DocumentChart
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:
public class DocumentChart
Inheritance: objectDocumentChart
Constructors
Create a new DocumentChart with no axes and an empty series group collection.
public DocumentChart()
Methods
Creates a deep copy of this chart and returns a new instance with cloned series, axes, title, and legend.
Properties
Gets or sets the legend associated with this chart, which controls category/series labeling.
public Legend Legend { get; set; }
Gets or sets the primary axes used by the first series group, affecting scaling and layout.
public AxisGroup PrimaryAxes { get; set; }
Gets or sets the secondary axes used for additional series groups in combo charts.
public AxisGroup SecondaryAxes { get; set; }
Gets the collection of series groups that organize the chart’s data.
public SeriesGroupCollection SeriesGroups { get; }