Class
NumericalAxisModel

Definition

Namespace:Telerik.Charting

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

cs-api-definition
public abstract class NumericalAxisModel : AxisModel, IDisposable, INotifyPropertyChanged, IContinuousAxisModel

Inheritance: objectDisposableObjectPropertyBagObjectChartNodeChartElementAxisModelNumericalAxisModel

Derived Classes: LinearAxisModelNumericRadialAxisModel

Implements: IContinuousAxisModelIDisposableINotifyPropertyChanged

Inherited Members AxisModel.UpdateLayoutStrategy()AxisModel.BuildTicksAndLabels(RadSize)AxisModel.LabelFormatAxisModel.LastLabelVisibilityAxisModel.LabelFitModeAxisModel.LabelIntervalAxisModel.LabelOffsetAxisModel.MajorTickOffsetAxisModel.IsInverseAxisModel.MajorTicksAxisModel.LabelsAxisModel.TickThicknessAxisModel.ShowLabelsAxisModel.MajorTickLengthAxisModel.LineThicknessAxisModel.HorizontalLocationAxisModel.VerticalLocationAxisModel.BottomOrLeftTickAxisModel.TopOrRightTickAxisModel.TypeAxisModel.TitleChartElement.FindAncestor<T>()ChartElement.IsAncestorOf(ChartNode)ChartElement.FindDescendant<T>()ChartElement.FindDescendant(Predicate<ChartNode>)ChartElement.EnumDescendants()ChartElement.EnumDescendants(TreeTraversalMode)ChartElement.EnumDescendants(Predicate<ChartNode>, TreeTraversalMode)ChartElement.DisposeManagedResources()ChartElement.PresenterChartNode.Arrange(RadRect, bool)ChartNode.Invalidate()ChartNode.SetValueCore(int, object)ChartNode.ClearValueCore(int)ChartNode.IsArrangeValidChartNode.NodeStateChartNode.IndexChartNode.CollectionIndexChartNode.IsTreeLoadedChartNode.LayoutSlotChartNode.ParentChartNode.PropertyChangedPropertyBagObject.IsLocalValue(int)PropertyBagObject.GetValue(int)PropertyBagObject.SetValue(int, object)PropertyBagObject.ClearValue(int)PropertyBagObject.GetTypedValue<T>(int, T)PropertyBagObject.PropertyStoreDisposableObject.Dispose()DisposableObject.DisposeUnmanagedResources()DisposableObject.IsDisposingDisposableObject.IsDisposedDisposableObject.EventsDisposableObject.DisposingDisposableObject.Disposed

Constructors

NumericalAxisModel()

Initializes a new instance of the NumericalAxisModel class.

Declaration

cs-api-definition
protected NumericalAxisModel()

Properties

ActualRange

Gets the actual range (minimum and maximum values) used by the axis.

Declaration

cs-api-definition
public ValueRange<double> ActualRange { get; }

Property Value

ValueRange<double>

DesiredTickCount

Gets or sets the number of the ticks available on the axis. If a value less than 2 is set, the property is reset to its default value.

Declaration

cs-api-definition
public int DesiredTickCount { get; set; }

Property Value

int

MajorStep

Gets or sets the user-defined major step of the axis.

Declaration

cs-api-definition
public double MajorStep { get; set; }

Property Value

double

Maximum

Gets or sets the user-defined maximum of the axis.

Declaration

cs-api-definition
public double Maximum { get; set; }

Property Value

double

Minimum

Gets or sets the user-defined minimum of the axis.

Declaration

cs-api-definition
public double Minimum { get; set; }

Property Value

double

RangeExtendDirection

Gets or sets a value that specifies how the auto-range of this axis will be extended so that each data point is visualized in the best possible way.

Declaration

cs-api-definition
public NumericalAxisRangeExtendDirection RangeExtendDirection { get; set; }

Property Value

NumericalAxisRangeExtendDirection

Methods

TransformValue(object)

Transforms the value.

Declaration

cs-api-definition
public virtual object TransformValue(object value)

Parameters

value

object

The value.

Returns

object