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

Represents the base class for gauge range elements that define value ranges on gauge controls.

Definition

Namespace:Telerik.Maui.Controls.Gauges

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public abstract class GaugeRangeBase : BindableObject

Inheritance: objectGaugeRangeBase

Derived Classes: GaugeGradientRangeGaugeRange

Constructors

Initializes a new instance of the GaugeRangeBase class.

C#
protected GaugeRangeBase()

Fields

FromProperty

BindableProperty

Identifies the From property.

C#
public static readonly BindableProperty FromProperty

ToProperty

BindableProperty

Identifies the To property.

C#
public static readonly BindableProperty ToProperty

Properties

Gets or sets the starting value of the range.

C#
public double From { get; set; }
Property Value:

A double representing the range start value.

Gets or sets the ending value of the range.

C#
public double To { get; set; }
Property Value:

A double representing the range end value.