Class
LinearAxis3D

Represents a numeric linear 3D axis within a RadCartesianChart3D instance.

Definition

Namespace:Telerik.Windows.Controls.ChartView

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

cs-api-definition
public class LinearAxis3D : ChartAxis3D

Inheritance: objectChartAxis3DLinearAxis3D

Inherited Members ChartAxis3D.ShowLabelsPropertyChartAxis3D.LabelStylePropertyChartAxis3D.LabelTemplatePropertyChartAxis3D.LabelIntervalPropertyChartAxis3D.TitlePropertyChartAxis3D.TitleTemplatePropertyChartAxis3D.LineStylePropertyChartAxis3D.MajorTickLengthPropertyChartAxis3D.PlotModePropertyChartAxis3D.OnApplyTemplate()ChartAxis3D.OnPropertyChanged(DependencyPropertyChangedEventArgs)ChartAxis3D.ShowLabelsChartAxis3D.LabelStyleChartAxis3D.LabelTemplateChartAxis3D.LabelIntervalChartAxis3D.TitleChartAxis3D.TitleTemplateChartAxis3D.LineStyleChartAxis3D.MajorTickLengthChartAxis3D.PlotModeChartAxis3D.SmartLabelsMode

Constructors

LinearAxis3D()

Initializes a new instance of the LinearAxis3D class.

Declaration

cs-api-definition
public LinearAxis3D()

Fields

ActualRangeProperty

Identifies the ActualRange dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty ActualRangeProperty

Field Value

DependencyProperty

DesiredTickCountProperty

Identifies the DesiredTickCount property.

Declaration

cs-api-definition
public static readonly DependencyProperty DesiredTickCountProperty

Field Value

DependencyProperty

LabelFormatProperty

Identifies the LabelFormat property.

Declaration

cs-api-definition
public static readonly DependencyProperty LabelFormatProperty

Field Value

DependencyProperty

MajorStepProperty

Identifies the MajorStep property.

Declaration

cs-api-definition
public static readonly DependencyProperty MajorStepProperty

Field Value

DependencyProperty

MaximumProperty

Identifies the Maximum property.

Declaration

cs-api-definition
public static readonly DependencyProperty MaximumProperty

Field Value

DependencyProperty

MinimumProperty

Identifies the Minimum property.

Declaration

cs-api-definition
public static readonly DependencyProperty MinimumProperty

Field Value

DependencyProperty

TickOriginProperty

Identifies the TickOrigin property.

Declaration

cs-api-definition
public static readonly DependencyProperty TickOriginProperty

Field Value

DependencyProperty

Properties

ActualRange

Gets the actual range used by the axis to plot data points.

Declaration

cs-api-definition
public ValueRange<double> ActualRange { get; }

Property Value

ValueRange<double>

DesiredTickCount

Gets or sets a value indicating the desired number of axis ticks.

Declaration

cs-api-definition
public int DesiredTickCount { get; set; }

Property Value

int

LabelFormat

Gets or sets the format that is used when displaying the default axis labels.

Declaration

cs-api-definition
public string LabelFormat { get; set; }

Property Value

string

MajorStep

Gets or sets the manually set major step of the axis.

Declaration

cs-api-definition
public double MajorStep { get; set; }

Property Value

double

Maximum

Gets or sets the manually set maximum of the axis.

Declaration

cs-api-definition
public double Maximum { get; set; }

Property Value

double

Minimum

Gets or sets the manually set minimum of the axis.

Declaration

cs-api-definition
public double Minimum { get; set; }

Property Value

double

TickOrigin

Gets or sets a value that indicates where the ticks originate. The position of the ticks is determined based on the combination of the MajorStep and TickOrigin values. The axis will generate the ticks and labels in a way so that a label would be positioned at the given TickOrigin.

Declaration

cs-api-definition
public double? TickOrigin { get; set; }

Property Value

double?

Methods

OnCreateAutomationPeer()

Returns class-specific AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.

Declaration

cs-api-definition
protected override AutomationPeer OnCreateAutomationPeer()

Returns

AutomationPeer

The type-specific AutomationPeer implementation.

Events

ActualRangeChanged

Occurs when the actual range changes.

Declaration

cs-api-definition
public event EventHandler<NumericalRangeChangedEventArgs> ActualRangeChanged

Event Value

EventHandler<NumericalRangeChangedEventArgs>