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

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:

C#
public class TickLabel : DependencyObject, INotifyPropertyChanged

Inheritance: objectTickLabel

Implements: INotifyPropertyChanged

Constructors

C#
public TickLabel()

Fields

FontFamilyProperty

DependencyProperty

Identifies the FontFamily dependency property.

C#
public static readonly DependencyProperty FontFamilyProperty

FontSizeProperty

DependencyProperty

Identifies the FontSize dependency property.

C#
public static readonly DependencyProperty FontSizeProperty

FontStretchProperty

DependencyProperty

Identifies the FontStretch dependency property.

C#
public static readonly DependencyProperty FontStretchProperty

FontStyleProperty

DependencyProperty

Identifies the FontStyle dependency property.

C#
public static readonly DependencyProperty FontStyleProperty

FontWeightProperty

DependencyProperty

Identifies the FontWeight dependency property.

C#
public static readonly DependencyProperty FontWeightProperty

ForegroundProperty

DependencyProperty

Identifies the Foreground dependency property.

C#
public static readonly DependencyProperty ForegroundProperty

FormatProperty

DependencyProperty

Identifies the Format dependency property.

C#
public static readonly DependencyProperty FormatProperty

FormattedValueProperty

DependencyProperty

Identifies the FormattedValue dependency property.

C#
public static readonly DependencyProperty FormattedValueProperty

MultiplierProperty

DependencyProperty

Identifies the Multiplier dependency property.

C#
public static readonly DependencyProperty MultiplierProperty

UseRangeColorProperty

DependencyProperty

Identifies the UseRangeColor dependency property.

C#
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.

C#
public DependencyObject Data { get; }

FontFamily

FontFamily

Gets or sets the tick label font family.

C#
public FontFamily FontFamily { get; set; }

Gets or sets the tick label font size.

C#
public double FontSize { get; set; }

FontStretch

FontStretch

Gets or sets the tick label font stretch.

C#
public FontStretch FontStretch { get; set; }

FontStyle

FontStyle

Gets or sets the tick label font style.

C#
public FontStyle FontStyle { get; set; }

FontWeight

FontWeight

Gets or sets the weight or thickness of the specified font.

C#
public FontWeight FontWeight { get; set; }

Gets or sets the tick label foreground.

C#
public Brush Foreground { get; set; }

Gets or sets the label format.

C#
public string Format { get; set; }

Gets or sets the formatted value of the label.

C#
public string FormattedValue { get; set; }

Gets or sets the scale multiplier.

C#
public double Multiplier { get; set; }

Gets value from object using format string.

C#
public object this[string formatString] { get; }
Parameters:formatStringstring

Format string.

Property Value:

Formatted value.

Gets or sets value which indicates whether the tick label will use range color as its foreground.

C#
public bool UseRangeColor { get; set; }

Methods

Raise property changed event for "Data" property.

C#
public void RaiseDataPropertyChanged()

Events

Occurs when property changed. Implemented for binding.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged