Class ChartAxis3D
Represents a 3D axis within a RadCartesianChart3D instance.
Inheritance
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public abstract class ChartAxis3D : Control, IModelOwner3D, IChart3DPart
Constructors
ChartAxis3D()
Fields
LabelIntervalProperty
Identifies the LabelInterval property.
Declaration
public static readonly DependencyProperty LabelIntervalProperty
Field Value
System.Windows.DependencyProperty
|
LabelStyleProperty
Identifies the LabelStyle property.
Declaration
public static readonly DependencyProperty LabelStyleProperty
Field Value
System.Windows.DependencyProperty
|
LabelTemplateProperty
Identifies the LabelTemplate property.
Declaration
public static readonly DependencyProperty LabelTemplateProperty
Field Value
System.Windows.DependencyProperty
|
LineStyleProperty
Identifies the LineStyle property.
Declaration
public static readonly DependencyProperty LineStyleProperty
Field Value
System.Windows.DependencyProperty
|
MajorTickLengthProperty
Identifies the MajorTickLength property.
Declaration
public static readonly DependencyProperty MajorTickLengthProperty
Field Value
System.Windows.DependencyProperty
|
PlotModeProperty
Identifies the PlotMode property.
Declaration
public static readonly DependencyProperty PlotModeProperty
Field Value
System.Windows.DependencyProperty
|
ShowLabelsProperty
Identifies the ShowLabels property.
Declaration
public static readonly DependencyProperty ShowLabelsProperty
Field Value
System.Windows.DependencyProperty
|
TitleProperty
Identifies the Title property.
Declaration
public static readonly DependencyProperty TitleProperty
Field Value
System.Windows.DependencyProperty
|
TitleTemplateProperty
Identifies the TitleTemplate property.
Declaration
public static readonly DependencyProperty TitleTemplateProperty
Field Value
System.Windows.DependencyProperty
|
Properties
LabelInterval
Gets or sets the step at which labels are positioned.
Declaration
public int LabelInterval { get; set; }
Property Value
System.Int32
|
LabelStyle
Gets or sets the style that is applied to the default axis labels.
Declaration
public Style LabelStyle { get; set; }
Property Value
System.Windows.Style
|
LabelTemplate
Gets or sets the label template.
Declaration
public DataTemplate LabelTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
LineStyle
Gets or sets the style that is applied to the Path element that presents the axis line.
Declaration
public Style LineStyle { get; set; }
Property Value
System.Windows.Style
|
MajorTickLength
Gets or sets the length of the major tick.
Declaration
public double MajorTickLength { get; set; }
Property Value
System.Double
|
PlotMode
Gets or sets the plot mode used to position values, ticks, and labels along the axis.
Declaration
public AxisPlotMode PlotMode { get; set; }
Property Value
AxisPlotMode
|
ShowLabels
Gets or sets a value indicating whether the axis should display labels.
Declaration
public bool ShowLabels { get; set; }
Property Value
System.Boolean
|
SmartLabelsMode
Gets or sets the smart labels mode that will be used to avoid overlapping labels.
Declaration
public AxisSmartLabelsMode SmartLabelsMode { get; set; }
Property Value
AxisSmartLabelsMode
|
Title
Gets or sets the title.
Declaration
public object Title { get; set; }
Property Value
System.Object
|
TitleTemplate
Gets or sets the title template.
Declaration
public DataTemplate TitleTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
Methods
OnApplyTemplate()
When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call System.Windows.Controls.Control.ApplyTemplate. In simplest terms, this means the method is called just before a UI element displays in an application. For more information, see Remarks.
Declaration
public override void OnApplyTemplate()
OnPropertyChanged(DependencyPropertyChangedEventArgs)
Invoked whenever the effective value of any dependency property on this System.Windows.FrameworkElement has been updated. The specific dependency property that changed is reported in the arguments parameter. Overrides System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs).
Declaration
protected override void OnPropertyChanged(DependencyPropertyChangedEventArgs e)
Parameters
System.Windows.DependencyPropertyChangedEventArgs
e
|