ClassHeatMapDefinition
A base class for the definitions based on which a RadHeatMap is constructed.
Definition
Namespace:Telerik.Windows.Controls.HeatMap
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public abstract class HeatMapDefinition : InheritanceContextPropagator
Inheritance: objectInheritanceContextPropagatorHeatMapDefinition
Derived Classes:
Inherited Members
Constructors
HeatMapDefinition()
Initializes a new instance of the HeatMapDefinition class.
Declaration
protected HeatMapDefinition()
Fields
ItemsSourceProperty
Identifies the ItemsSource dependency property.
Declaration
public static readonly DependencyProperty ItemsSourceProperty
Field Value
DependencyProperty
SelectedItemsProperty
Identifies the SelectedItems dependency property.
Declaration
public static readonly DependencyProperty SelectedItemsProperty
Field Value
DependencyProperty
Properties
ItemsSource
Gets or sets the items source.
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
SelectedItems
Gets or sets the selected items.
Source
Gets the collection source used internally by the heat map definition.
Declaration
protected abstract IHeatMapSource Source { get; }
Property Value
Methods
GetColor(int, int)
Gets the color of the cell.
GetColumnHeader(int)
Gets the header of the corresponding column.
GetRowHeader(int)
Gets the header of the corresponding row.
OnItemsSourceChanged()
This method is called when the ItemsSource changes.
Declaration
protected abstract void OnItemsSourceChanged()