New to Telerik UI for WPFStart a free 30-day trial

Base class for all measures that provide data to the UI elements.

Definition

Namespace:Telerik.Windows.Controls.BulletGraph

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public abstract class MeasureBase : InheritanceContextPropagator, INotifyPropertyChanged

Inheritance: objectInheritanceContextPropagatorMeasureBase

Derived Classes: FeaturedMeasureScaleMeasure

Implements: INotifyPropertyChanged

Inherited Members InheritanceContextPropagator.CreateInstanceCore()InheritanceContextPropagator.FreezeCore(bool)

Constructors

C#
protected MeasureBase()

Fields

BrushProperty

DependencyProperty

Identifies the Brush dependency property.

C#
public static readonly DependencyProperty BrushProperty

ValueProperty

DependencyProperty

Identifies the Value dependency property.

C#
public static readonly DependencyProperty ValueProperty

Properties

Brush

Brush

Gets or sets the Brush.

C#
public Brush Brush { get; set; }

Gets or sets the Value.

C#
public double Value { get; set; }

Methods

Called when [property changed].

C#
protected virtual void OnPropertyChanged(string propertyName)
Parameters:propertyNamestring

Name of the property.

Called when [range changed].

C#
protected virtual void OnRangeChanged()

Called when [value changed].

C#
protected virtual void OnValueChanged()

Events

Occurs when a property value changes.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged