Skip to main content

LinearGaugeRange Class

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Represents a colored range on a linear gauge.

public class LinearGaugeRange

Inheritance: object -> LinearGaugeRange

Implements: INotifyPropertyChanged

Constructors

NameDescription
LinearGaugeRangeNo summary available.

LinearGaugeRange Constructor

public LinearGaugeRange()

Properties

NameDescription
BrushGets or sets the brush/color for this range.
EndGets or sets the end value of the range.
StartGets or sets the start value of the range.

Brush Property

Gets or sets the brush/color for this range.

public Avalonia.Media.IBrush Brush { get; set; }

End Property

Gets or sets the end value of the range.

public double End { get; set; }

Start Property

Gets or sets the start value of the range.

public double Start { get; set; }

Events

NameDescription
PropertyChangedOccurs when a property value changes.

PropertyChanged Event

Occurs when a property value changes.

public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged