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

Represents a range bar indicator for gauge controls that displays a bar element between two values with customizable thickness and caps.

Definition

Constructors

C#
public GaugeRangeBarIndicator()

Fields

FromCapProperty

BindableProperty

Identifies the FromCap property.

C#
public static readonly BindableProperty FromCapProperty

FromProperty

BindableProperty

Identifies the From property.

C#
public static readonly BindableProperty FromProperty

FromThicknessProperty

BindableProperty

Identifies the FromThickness property.

C#
public static readonly BindableProperty FromThicknessProperty

ToCapProperty

BindableProperty

Identifies the ToCap property.

C#
public static readonly BindableProperty ToCapProperty

ToProperty

BindableProperty

Identifies the To property.

C#
public static readonly BindableProperty ToProperty

ToThicknessProperty

BindableProperty

Identifies the ToThickness property.

C#
public static readonly BindableProperty ToThicknessProperty

Properties

Gets or sets the starting value of the range bar indicator.

C#
public double From { get; set; }

Gets or sets the cap style at the starting position of the range bar indicator.

C#
public GaugeBarIndicatorCap FromCap { get; set; }

Gets or sets the thickness of the bar at the starting position.

C#
public double FromThickness { get; set; }

Gets the collection of gradient stops in accordance to which the bar is painted. The Offset property of the gradient stop is treated in respect to the IsOffsetRelative property value of the indicator.

C#
public ObservableItemCollection<RadGradientStop> GradientStops { get; }

Gets or sets a value indicating whether the Offset property of the gradient stops should be treated as a relative value between 0 and 1 or an absolute value in respect to the axis range.

C#
public bool IsOffsetRelative { get; set; }

Gets or sets the ending value of the range bar indicator.

C#
public double To { get; set; }

Gets or sets the cap style at the ending position of the range bar indicator.

C#
public GaugeBarIndicatorCap ToCap { get; set; }

Gets or sets the thickness of the bar at the ending position.

C#
public double ToThickness { get; set; }