Class HeatMapLabel
A base class for the header labels of the RadHeatMap.
Inheritance
Namespace: Telerik.Windows.Controls.HeatMap
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public abstract class HeatMapLabel : Control
Constructors
HeatMapLabel()
Declaration
protected HeatMapLabel()
Fields
AppliedLabelStyleProperty
Identifies the read-only AppliedLabelStyle dependency property.
Declaration
public static readonly DependencyProperty AppliedLabelStyleProperty
Field Value
System.Windows.DependencyProperty
|
HoveredLabelStyleProperty
Identifies the HoveredLabelStyleProperty dependency property.
Declaration
public static readonly DependencyProperty HoveredLabelStyleProperty
Field Value
System.Windows.DependencyProperty
|
IsHoveredProperty
Identifies the IsHovered dependency property.
Declaration
public static readonly DependencyProperty IsHoveredProperty
Field Value
System.Windows.DependencyProperty
|
LabelStyleProperty
Identifies the LabelStyle dependency property.
Declaration
public static readonly DependencyProperty LabelStyleProperty
Field Value
System.Windows.DependencyProperty
|
LabelTextProperty
Identifies the LabelText dependency property.
Declaration
public static readonly DependencyProperty LabelTextProperty
Field Value
System.Windows.DependencyProperty
|
Properties
AppliedLabelStyle
Gets the style that is actually applied to the label.
Declaration
public Style AppliedLabelStyle { get; }
Property Value
System.Windows.Style
|
Remarks
This property is set internally. The value of this property is the same as the value of the HoveredLabelStyle or the LabelStyle properties, depending on the mouse location, whether or not the mouse is over the row (or column) that the label corresponds to.
HoveredLabelStyle
Gets or sets the style that is applied to the label when the mouse is over the row (or column) that the label corresponds to.
Declaration
public Style HoveredLabelStyle { get; set; }
Property Value
System.Windows.Style
|
IsHovered
Gets or a value indicating whether the mouse is over the row (or column) that the label corresponds to.
Declaration
public bool IsHovered { get; set; }
Property Value
System.Boolean
|
LabelStyle
Gets or sets the style that is applied to the label.
Declaration
public Style LabelStyle { get; set; }
Property Value
System.Windows.Style
|
LabelText
Gets or sets the label text.
Declaration
public string LabelText { get; set; }
Property Value
System.String
|