GaugeBarIndicator
Represents a bar indicator for gauge controls that displays a bar element with customizable thickness and caps.
Definition
Namespace:Telerik.Maui.Controls.Gauges
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class GaugeBarIndicator : GaugeSingleValueIndicatorBase
Inheritance: objectGaugeIndicatorBaseGaugeSingleValueIndicatorBaseGaugeBarIndicator
Inherited Members
Constructors
public GaugeBarIndicator()
Fields
EndCapProperty
BindableProperty
Identifies the EndCap property.
public static readonly BindableProperty EndCapProperty
EndThicknessProperty
BindableProperty
Identifies the EndThickness property.
public static readonly BindableProperty EndThicknessProperty
StartCapProperty
BindableProperty
Identifies the StartCap property.
public static readonly BindableProperty StartCapProperty
StartThicknessProperty
BindableProperty
Identifies the StartThickness property.
public static readonly BindableProperty StartThicknessProperty
Properties
Gets or sets the cap style at the end of the bar indicator.
public GaugeBarIndicatorCap EndCap { get; set; }
Gets or sets the thickness of the bar at the end position.
public double EndThickness { 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 start of the bar indicator.
public GaugeBarIndicatorCap StartCap { get; set; }
Gets or sets the thickness of the bar at the start position.
public double StartThickness { get; set; }
Methods
Called when a property value changes.
protected override void OnPropertyChanged(string propertyName = null)
The name of the property that changed.