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