Class
GaugeRangeBase

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:

cs-api-definition
public abstract class GaugeRangeBase : BindableObject

Inheritance: objectGaugeRangeBase

Derived Classes: GaugeGradientRangeGaugeRange

Constructors

GaugeRangeBase()

Initializes a new instance of the GaugeRangeBase class.

Declaration

cs-api-definition
protected GaugeRangeBase()

Fields

FromProperty

Identifies the From property.

Declaration

cs-api-definition
public static readonly BindableProperty FromProperty

Field Value

BindableProperty

ToProperty

Identifies the To property.

Declaration

cs-api-definition
public static readonly BindableProperty ToProperty

Field Value

BindableProperty

Properties

From

Gets or sets the starting value of the range.

Declaration

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

Property Value

double

A double representing the range start value.

To

Gets or sets the ending value of the range.

Declaration

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

Property Value

double

A double representing the range end value.