Class NumericRadialAxis
Represents a RadialAxis that plots numerical data.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class NumericRadialAxis : RadialAxis, IChartElementPresenterWithMargin, IChartElementPresenter
Constructors
NumericRadialAxis()
Fields
MajorStepProperty
Identifies the MajorStep dependency property.
Declaration
public static readonly DependencyProperty MajorStepProperty
Field Value
System.Windows.DependencyProperty
|
MinorTicksPerMajorProperty
Identifies the MinorTicksPerMajor property.
Declaration
public static readonly DependencyProperty MinorTicksPerMajorProperty
Field Value
System.Windows.DependencyProperty
|
MinorTickStyleProperty
Identifies the MinorTickStyle dependency property.
Declaration
public static readonly DependencyProperty MinorTickStyleProperty
Field Value
System.Windows.DependencyProperty
|
MinorTickTemplateProperty
Identifies the MinorTickTemplate dependency property.
Declaration
public static readonly DependencyProperty MinorTickTemplateProperty
Field Value
System.Windows.DependencyProperty
|
Properties
MajorStep
Gets or sets the step of the ticks on the axis ellipse.
Declaration
public double MajorStep { get; set; }
Property Value
System.Double
|
MinorTickLength
Gets or sets the length of the minor tick.
Declaration
public double MinorTickLength { get; set; }
Property Value
System.Double
|
MinorTickOffset
Gets or sets index-based offset of the first tick to be displayed.
Declaration
public int MinorTickOffset { get; set; }
Property Value
System.Int32
|
MinorTicksPerMajor
Gets or sets the number of minor ticks per major interval.
Declaration
public int MinorTicksPerMajor { get; set; }
Property Value
System.Int32
|
MinorTickStyle
Gets or sets the style for each System.Windows.Shapes.Rectangle instance created to represent a minor tick when no MinorTickTemplate is specified. Creating a System.Windows.Shapes.Rectangle instance per tick instead of a System.Windows.Controls.ContentPresenter gives a huge performance boost.
Declaration
public Style MinorTickStyle { get; set; }
Property Value
System.Windows.Style
|
MinorTickTemplate
Gets or sets the template that defines the appearance of all minor ticks present on the axis.
Declaration
public DataTemplate MinorTickTemplate { get; set; }
Property Value
System.Windows.DataTemplate
|
Methods
GetTickTemplate(TickType)
Gets the System.Windows.DataTemplate instance used to visualize the a tick with the specified TickType.
Declaration
protected override DataTemplate GetTickTemplate(TickType tickType)
Parameters
TickType
tickType
|
Returns
System.Windows.DataTemplate
|