TickLabel
Represents data object for tick's label. This class is designed for internal use.
Definition
Namespace:Telerik.Windows.Controls.Gauge
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public class TickLabel : DependencyObject, INotifyPropertyChanged
Inheritance: objectTickLabel
Implements:
Constructors
public TickLabel()
Fields
FontFamilyProperty
DependencyProperty
Identifies the FontFamily dependency property.
public static readonly DependencyProperty FontFamilyProperty
FontSizeProperty
DependencyProperty
Identifies the FontSize dependency property.
public static readonly DependencyProperty FontSizeProperty
FontStretchProperty
DependencyProperty
Identifies the FontStretch dependency property.
public static readonly DependencyProperty FontStretchProperty
FontStyleProperty
DependencyProperty
Identifies the FontStyle dependency property.
public static readonly DependencyProperty FontStyleProperty
FontWeightProperty
DependencyProperty
Identifies the FontWeight dependency property.
public static readonly DependencyProperty FontWeightProperty
ForegroundProperty
DependencyProperty
Identifies the Foreground dependency property.
public static readonly DependencyProperty ForegroundProperty
FormatProperty
DependencyProperty
Identifies the Format dependency property.
public static readonly DependencyProperty FormatProperty
FormattedValueProperty
DependencyProperty
Identifies the FormattedValue dependency property.
public static readonly DependencyProperty FormattedValueProperty
MultiplierProperty
DependencyProperty
Identifies the Multiplier dependency property.
public static readonly DependencyProperty MultiplierProperty
UseRangeColorProperty
DependencyProperty
Identifies the UseRangeColor dependency property.
public static readonly DependencyProperty UseRangeColorProperty
Properties
Data
DependencyObject
Return reference to self. This property can be used within Binding in XAML to implement binding which reflect extended property changes.
public DependencyObject Data { get; }
FontFamily
FontFamily
Gets or sets the tick label font family.
public FontFamily FontFamily { get; set; }
FontStretch
FontStretch
Gets or sets the tick label font stretch.
public FontStretch FontStretch { get; set; }
FontStyle
FontStyle
Gets or sets the tick label font style.
public FontStyle FontStyle { get; set; }
FontWeight
FontWeight
Gets or sets the weight or thickness of the specified font.
public FontWeight FontWeight { get; set; }
Foreground
Brush
Gets or sets the tick label foreground.
public Brush Foreground { get; set; }
Gets or sets the formatted value of the label.
public string FormattedValue { get; set; }
Gets or sets the scale multiplier.
public double Multiplier { get; set; }
Gets value from object using format string.
public object this[string formatString] { get; }
Format string.
Property Value:Formatted value.
Gets or sets value which indicates whether the tick label will use range color as its foreground.
public bool UseRangeColor { get; set; }
Methods
Raise property changed event for "Data" property.
public void RaiseDataPropertyChanged()
Events
Occurs when property changed. Implemented for binding.
public event PropertyChangedEventHandler PropertyChanged
Implements: