NumericalAxis
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
Namespace:Telerik.Maui.Controls.Charts
Assembly:Telerik.Maui.Controls.dll
Syntax:
public sealed class NumericalAxis : ChartAxis
Inheritance: objectChartAxisNumericalAxis
Inherited Members
Constructors
public NumericalAxis()
Fields
DesiredTickCountProperty
BindableProperty
Identifies the DesiredTickCount bindable property.
public static readonly BindableProperty DesiredTickCountProperty
MaximumProperty
BindableProperty
Identifies the Maximum bindable property.
public static readonly BindableProperty MaximumProperty
MinimumProperty
BindableProperty
Identifies the Minimum bindable property.
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.
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.
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.
public double Minimum { get; set; }