A class that encapsulates ranges specific information such as Position, Offset, StartThickness and other properties that apply to all ranges in a gauge.
Definition
Namespace:Telerik.Maui.Controls.Gauges
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class GaugeRangesDefinition : BindableObject
Inheritance: objectGaugeRangesDefinition
Constructors
Initializes a new instance of the GaugeRangesDefinition class.
C#
public GaugeRangesDefinition()
Properties
Gets or sets the end thickness of the ranges segment.
C#
public double EndThickness { get; set; }
Gets or sets the distance between the range and axis line.
C#
public double Offset { get; set; }
Gets or sets the position of the ranges with respect to the axis line.
C#
public GaugeElementPosition Position { get; set; }
Gets the collection of ranges.
C#
public ObservableItemCollection<GaugeRangeBase> Ranges { get; }
Gets or sets the start thickness of the ranges segment.
C#
public double StartThickness { get; set; }
Methods
Invoked whenever the binding context of the element changes. Propagates the binding context to its child elements.
C#
protected override void OnBindingContextChanged()