MeasureBase
Class
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:
Implements:
Inherited Members
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; }
Methods
Called when [property changed].
C#
protected virtual void OnPropertyChanged(string propertyName)
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: