New to Telerik Document ProcessingStart a free 30-day trial

Coordinates the category and value axes used by a chart, enabling primary/secondary groupings and change propagation.

Definition

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

Assembly:Telerik.Windows.Documents.Core.dll

Syntax:

C#
public class AxisGroup

Inheritance: objectAxisGroup

Constructors

Initializes a new instance of the AxisGroup class. Creates a group with default axes for category and value.

C#
public AxisGroup()

Initializes a new instance of the AxisGroup class. Uses the provided category and value axes for coordinated plotting and change propagation.

C#
public AxisGroup(Axis categoryAxis, Axis valueAxis)
Parameters:categoryAxisAxis

The category axis.

valueAxisAxis

The value axis.

Methods

Creates a deep copy of this group by reusing the current category and value axes references.

C#
public AxisGroup Clone()
Returns:

AxisGroup

The deep copy of the object.

Properties

Category axis against which series categories are plotted; changing it raises group change notifications.

C#
public Axis CategoryAxis { get; set; }

Value axis against which series values are plotted; changing it raises group change notifications.

C#
public Axis ValueAxis { get; set; }