LinearAxis3D
Represents a numeric linear 3D axis within a RadCartesianChart3D instance.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public class LinearAxis3D : ChartAxis3D
Inheritance: objectChartAxis3DLinearAxis3D
Inherited Members
Constructors
Initializes a new instance of the LinearAxis3D class.
public LinearAxis3D()
Fields
ActualRangeProperty
DependencyProperty
Identifies the ActualRange dependency property.
public static readonly DependencyProperty ActualRangeProperty
DesiredTickCountProperty
DependencyProperty
Identifies the DesiredTickCount property.
public static readonly DependencyProperty DesiredTickCountProperty
LabelFormatProperty
DependencyProperty
Identifies the LabelFormat property.
public static readonly DependencyProperty LabelFormatProperty
MajorStepProperty
DependencyProperty
Identifies the MajorStep property.
public static readonly DependencyProperty MajorStepProperty
MaximumProperty
DependencyProperty
Identifies the Maximum property.
public static readonly DependencyProperty MaximumProperty
MinimumProperty
DependencyProperty
Identifies the Minimum property.
public static readonly DependencyProperty MinimumProperty
TickOriginProperty
DependencyProperty
Identifies the TickOrigin property.
public static readonly DependencyProperty TickOriginProperty
Properties
Gets the actual range used by the axis to plot data points.
public ValueRange<double> ActualRange { get; }
Gets or sets a value indicating the desired number of axis ticks.
public int DesiredTickCount { get; set; }
Gets or sets the format that is used when displaying the default axis labels.
public string LabelFormat { get; set; }
Gets or sets the manually set major step of the axis.
public double MajorStep { get; set; }
Gets or sets the manually set maximum of the axis.
public double Maximum { get; set; }
Gets or sets the manually set minimum of the axis.
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.
public double? TickOrigin { get; set; }
Methods
OnCreateAutomationPeer()
AutomationPeer
Returns class-specific AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure.
protected override AutomationPeer OnCreateAutomationPeer()
AutomationPeer
The type-specific AutomationPeer implementation.
Events
Occurs when the actual range changes.
public event EventHandler<NumericalRangeChangedEventArgs> ActualRangeChanged