LinearAxis
Represents a NumericalAxis which step is linear.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
public class LinearAxis : NumericalAxis, IChartElementPresenter
Inheritance: objectRadControlBasePresenterBaseChartElementPresenterAxisLineAxisCartesianAxisNumericalAxisLinearAxis...
Implements:
Inherited Members
Constructors
Initializes a new instance of the LinearAxis class.
public LinearAxis()
Fields
ActualMajorStepProperty
DependencyProperty
Identifies the ActualMajorStep dependency property.
public static readonly DependencyProperty ActualMajorStepProperty
MajorStepProperty
DependencyProperty
Identifies the MajorStep dependency property.
public static readonly DependencyProperty MajorStepProperty
TickOriginProperty
DependencyProperty
Identifies the TickOrigin dependency property.
public static readonly DependencyProperty TickOriginProperty
Properties
Gets the actual major step.
public double ActualMajorStep { get; }
Gets or sets the major step between each axis tick. By default the axis itself will calculate the major step, depending on the plotted data points.
[TypeConverter(typeof(StringToDoubleConverter))]
public double MajorStep { get; set; }
You can reset this property by setting it to 0 to restore the default behavior.
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 decimal? TickOrigin { get; set; }
Methods
Raises the event. This method is invoked whenever is set to true internally.
protected override void OnInitialized(EventArgs e)
The RoutedEventArgs that contains the event data.
Overrides:
Events
Occurs when the actual major step changes.
public event EventHandler ActualMajorStepChanged