Class
GaugeAxisBase

Base class for gauge axes that provides common properties and functionality for gauge axis controls.

Definition

Namespace:Telerik.Maui.Controls.Gauges

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public abstract class GaugeAxisBase : BindableObject

Inheritance: objectGaugeAxisBase

Derived Classes: GaugeLinearAxis

Fields

FontAttributesProperty

Identifies the FontAttributes bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty FontAttributesProperty

Field Value

BindableProperty

FontFamilyProperty

Identifies the FontFamily bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty FontFamilyProperty

Field Value

BindableProperty

FontSizeProperty

Identifies the FontSize bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty FontSizeProperty

Field Value

BindableProperty

IsInverseProperty

Identifies the IsInverse bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty IsInverseProperty

Field Value

BindableProperty

LabelFormatProperty

Identifies the LabelFormat bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty LabelFormatProperty

Field Value

BindableProperty

LabelIntervalProperty

Identifies the LabelInterval bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty LabelIntervalProperty

Field Value

BindableProperty

LabelOffsetProperty

Identifies the LabelOffset bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty LabelOffsetProperty

Field Value

BindableProperty

MaximumProperty

Identifies the Maximum bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty MaximumProperty

Field Value

BindableProperty

MinimumProperty

Identifies the Minimum bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty MinimumProperty

Field Value

BindableProperty

ShowLabelsProperty

Identifies the ShowLabels bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty ShowLabelsProperty

Field Value

BindableProperty

StrokeProperty

Identifies the Stroke bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty StrokeProperty

Field Value

BindableProperty

StrokeThicknessProperty

Identifies the StrokeThickness bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty StrokeThicknessProperty

Field Value

BindableProperty

TextColorProperty

Identifies the TextColor bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty TextColorProperty

Field Value

BindableProperty

TickLengthProperty

Identifies the TickLength bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty TickLengthProperty

Field Value

BindableProperty

TickOffsetProperty

Identifies the TickOffset bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty TickOffsetProperty

Field Value

BindableProperty

TickStrokeProperty

Identifies the TickStroke bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty TickStrokeProperty

Field Value

BindableProperty

TickThicknessProperty

Identifies the TickThickness bindable property.

Declaration

cs-api-definition
public static readonly BindableProperty TickThicknessProperty

Field Value

BindableProperty

Properties

FontAttributes

Gets or sets the font attributes of the axis labels.

Declaration

cs-api-definition
public FontAttributes FontAttributes { get; set; }

Property Value

FontAttributes

FontFamily

Gets or sets the font family of the axis labels.

Declaration

cs-api-definition
public string FontFamily { get; set; }

Property Value

string

FontSize

Gets or sets the font size of the axis labels.

Declaration

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

Property Value

double

IsInverse

Gets or sets a value indicating whether the axis is inverted.

Declaration

cs-api-definition
public bool IsInverse { get; set; }

Property Value

bool

LabelFormat

Gets or sets the numeric string format that is applied to the labels.

Declaration

cs-api-definition
public string LabelFormat { get; set; }

Property Value

string

LabelInterval

Gets or sets the label interval that specifies that one in n labels is visible.

Declaration

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

Property Value

int

LabelOffset

Gets or sets the distance between the label and axis line.

Declaration

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

Property Value

double

LabelPosition

Gets or sets the position of the label with respect to the axis line.

Declaration

cs-api-definition
public GaugeElementPosition LabelPosition { get; set; }

Property Value

GaugeElementPosition

Maximum

Gets or sets the maximum value of the axis.

Declaration

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

Property Value

double

Minimum

Gets or sets the minimum value of the axis.

Declaration

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

Property Value

double

ShowLabels

Gets or sets a value indicating whether labels are displayed on the axis.

Declaration

cs-api-definition
public bool ShowLabels { get; set; }

Property Value

bool

Stroke

Gets or sets the color of the axis line and ticks. This value is applied to the axis ticks only when the TickStroke value is the default Color.Default value.

Declaration

cs-api-definition
public Color Stroke { get; set; }

Property Value

Color

StrokeThickness

Gets or sets the thickness of the axis line and ticks. This value is applied to the axis ticks only when the TickThickness value is invalid/negative.

Declaration

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

Property Value

double

TextColor

Gets or sets the color of the axis labels text.

Declaration

cs-api-definition
public Color TextColor { get; set; }

Property Value

Color

TickLength

Gets or sets the length of the axis ticks.

Declaration

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

Property Value

double

TickOffset

Gets or sets the distance between the tick and axis line.

Declaration

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

Property Value

double

TickPosition

Gets or sets the position of the tick with respect to the axis line.

Declaration

cs-api-definition
public GaugeElementPosition TickPosition { get; set; }

Property Value

GaugeElementPosition

TickStroke

Gets or sets the stroke of the ticks. When this value is Color.Default the ticks get the same color as the axis line.

Declaration

cs-api-definition
public Color TickStroke { get; set; }

Property Value

Color

TickThickness

Gets or sets the thickness of the tick. When this value is invalid/negative the ticks get the same thickness as the axis line.

Declaration

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

Property Value

double