Class MeasureBaseControl
Base class for all measures that provide data as UI elements.
Inheritance
Namespace: Telerik.Windows.Controls.BulletGraph
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public abstract class MeasureBaseControl : Control, INotifyPropertyChanged, IProvideMeasureValue, IRequireRange
Constructors
MeasureBaseControl()
Declaration
protected MeasureBaseControl()
Fields
BrushProperty
Identifies the Brush dependency property.
Declaration
public static readonly DependencyProperty BrushProperty
Field Value
System.Windows.DependencyProperty
|
ValueProperty
Identifies the Value dependency property.
Declaration
public static readonly DependencyProperty ValueProperty
Field Value
System.Windows.DependencyProperty
|
Properties
Brush
Gets or sets the Brush.
Declaration
public Brush Brush { get; set; }
Property Value
System.Windows.Media.Brush
|
Value
Gets or sets the Value.
Declaration
public double Value { get; set; }
Property Value
System.Double
|
Methods
OnPropertyChanged(String)
Called when [property changed].
Declaration
protected virtual void OnPropertyChanged(string propertyName)
Parameters
System.String
propertyName
Name of the property. |
OnRangeChanged()
Called when [range changed].
Declaration
protected virtual void OnRangeChanged()
OnValueChanged()
Called when [value changed].
Declaration
protected virtual void OnValueChanged()
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|