Class DocumentChart
Represents a chart.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Model.Drawing.Charts
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class DocumentChart
Constructors
DocumentChart()
Properties
Legend
Gets or sets the chart legend of the chart.
Declaration
public Legend Legend { get; set; }
Property Value
Legend
|
PrimaryAxes
Represents the primary group of axes of the chart.
Declaration
public AxisGroup PrimaryAxes { get; set; }
Property Value
AxisGroup
|
SecondaryAxes
Represents the secondary group of axes of the chart. It is used when there is more than one group of series (combo chart).
Declaration
public AxisGroup SecondaryAxes { get; set; }
Property Value
AxisGroup
|
SeriesGroups
Represents a collection of the groups in which the series of the chart are organized.
Declaration
public SeriesGroupCollection SeriesGroups { get; }
Property Value
SeriesGroupCollection
|
Title
Represents the title of the chart.
Declaration
public Title Title { get; set; }
Property Value
Title
|
Methods
Clone()
Creates a deep copy of the object.
Declaration
public DocumentChart Clone()
Returns
DocumentChart
The deep copy of the object. |