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