Represents a range bar indicator for gauge controls that displays a bar element between two values with customizable thickness and caps.
Definition
Namespace:Telerik.Maui.Controls.Gauges
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class GaugeRangeBarIndicator : GaugeIndicatorBase
Inheritance: objectGaugeIndicatorBaseGaugeRangeBarIndicator
Inherited Members
Constructors
public GaugeRangeBarIndicator()
Fields
FromCapProperty
BindableProperty
Identifies the FromCap property.
public static readonly BindableProperty FromCapProperty
FromProperty
BindableProperty
Identifies the From property.
public static readonly BindableProperty FromProperty
FromThicknessProperty
BindableProperty
Identifies the FromThickness property.
public static readonly BindableProperty FromThicknessProperty
ToCapProperty
BindableProperty
Identifies the ToCap property.
public static readonly BindableProperty ToCapProperty
ToProperty
BindableProperty
Identifies the To property.
public static readonly BindableProperty ToProperty
ToThicknessProperty
BindableProperty
Identifies the ToThickness property.
public static readonly BindableProperty ToThicknessProperty
Properties
Gets or sets the starting value of the range bar indicator.
public double From { get; set; }
Gets or sets the cap style at the starting position of the range bar indicator.
public GaugeBarIndicatorCap FromCap { get; set; }
Gets or sets the thickness of the bar at the starting position.
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.
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.
public bool IsOffsetRelative { get; set; }
Gets or sets the cap style at the ending position of the range bar indicator.
public GaugeBarIndicatorCap ToCap { get; set; }
Gets or sets the thickness of the bar at the ending position.
public double ToThickness { get; set; }