New to Telerik UI for WPFStart a free 30-day trial

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

Definition

Constructors

Initializes a new instance of the LinearAxis3D class.

C#
public LinearAxis3D()

Fields

ActualRangeProperty

DependencyProperty

Identifies the ActualRange dependency property.

C#
public static readonly DependencyProperty ActualRangeProperty

DesiredTickCountProperty

DependencyProperty

Identifies the DesiredTickCount property.

C#
public static readonly DependencyProperty DesiredTickCountProperty

LabelFormatProperty

DependencyProperty

Identifies the LabelFormat property.

C#
public static readonly DependencyProperty LabelFormatProperty

MajorStepProperty

DependencyProperty

Identifies the MajorStep property.

C#
public static readonly DependencyProperty MajorStepProperty

MaximumProperty

DependencyProperty

Identifies the Maximum property.

C#
public static readonly DependencyProperty MaximumProperty

MinimumProperty

DependencyProperty

Identifies the Minimum property.

C#
public static readonly DependencyProperty MinimumProperty

TickOriginProperty

DependencyProperty

Identifies the TickOrigin property.

C#
public static readonly DependencyProperty TickOriginProperty

Properties

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

C#
public ValueRange<double> ActualRange { get; }

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

C#
public int DesiredTickCount { get; set; }

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

C#
public string LabelFormat { get; set; }

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

C#
public double MajorStep { get; set; }

Gets or sets the manually set maximum of the axis.

C#
public double Maximum { get; set; }

Gets or sets the manually set minimum of the axis.

C#
public double Minimum { get; set; }

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.

C#
public double? TickOrigin { get; set; }

Methods

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

C#
protected override AutomationPeer OnCreateAutomationPeer()
Returns:

AutomationPeer

The type-specific AutomationPeer implementation.

Events

Occurs when the actual range changes.

C#
public event EventHandler<NumericalRangeChangedEventArgs> ActualRangeChanged