New to Telerik UI for .NET MAUIStart a free 30-day trial

Represents a chart axis that positions data points along a continuous numeric scale. Use this axis type when the bound values are measurable quantities (for example prices, counts, or percentages) rather than discrete categories or date-time instances.

Definition

Constructors

C#
public NumericalAxis()

Fields

DesiredTickCountProperty

BindableProperty

Identifies the DesiredTickCount bindable property.

C#
public static readonly BindableProperty DesiredTickCountProperty

MaximumProperty

BindableProperty

Identifies the Maximum bindable property.

C#
public static readonly BindableProperty MaximumProperty

MinimumProperty

BindableProperty

Identifies the Minimum bindable property.

C#
public static readonly BindableProperty MinimumProperty

Properties

Gets or sets the approximate number of major ticks the chart engine aims to produce when automatically distributing ticks across the resolved Minimum-Maximum range. The actual tick count may differ slightly so that ticks fall on round numeric boundaries. The value must be greater than 0; the default is 7.

C#
public int DesiredTickCount { get; set; }

Gets or sets the largest value represented on the axis. Data points above this value are clipped from the visible plot range. Set to NaN (the default) to let the chart engine derive the maximum automatically from the largest bound value across all series that use this axis.

C#
public double Maximum { get; set; }

Gets or sets the smallest value represented on the axis. Data points below this value are clipped from the visible plot range. Set to NaN (the default) to let the chart engine derive the minimum automatically from the smallest bound value across all series that use this axis.

C#
public double Minimum { get; set; }