Class Axis
Represents one of the axes of the chart.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Model.Drawing.Charts
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public abstract class Axis
Constructors
Axis()
Properties
AxisType
Gets the type of the axis.
Declaration
public abstract AxisType AxisType { get; }
Property Value
AxisType
|
IsVisible
Gets or sets the value indicating whether the axis is visible.
Declaration
public bool IsVisible { get; set; }
Property Value
System.Boolean
|
MajorGridlines
Gets the major gridlines of the axis.
Declaration
public ChartLine MajorGridlines { get; }
Property Value
ChartLine
|
Max
Gets or sets the largest value of the axis. If the value is null, the largest value will be determined automatically. For data axes, this value is an OLE Automation date value. For categorical axis, this number is the number of the category in the succession of the category collection.
Declaration
public double? Max { get; set; }
Property Value
System.Nullable<System.Double>
|
Min
Gets or sets the smallest value of the axis. If the value is null, the smallest value will be determined automatically. For data axes, this value is an OLE Automation date value. For categorical axis, this number is the number of the category in the succession of the category collection.
Declaration
public double? Min { get; set; }
Property Value
System.Nullable<System.Double>
|
NumberFormat
Gets or sets the format string that is applied to the values of the axis.
Declaration
public string NumberFormat { get; set; }
Property Value
System.String
|
Outline
Methods
Clone()
Creates a deep copy of the object.
Declaration
public Axis Clone()
Returns
Axis
The deep copy of the object. |