HeatMapDefinition
Class
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:
C#
public abstract class HeatMapDefinition : InheritanceContextPropagator
Inheritance: objectInheritanceContextPropagatorHeatMapDefinition
Derived Classes:
Inherited Members
Constructors
Initializes a new instance of the HeatMapDefinition class.
C#
protected HeatMapDefinition()
Fields
ItemsSourceProperty
DependencyProperty
Identifies the ItemsSource dependency property.
C#
public static readonly DependencyProperty ItemsSourceProperty
SelectedItemsProperty
DependencyProperty
Identifies the SelectedItems dependency property.
C#
public static readonly DependencyProperty SelectedItemsProperty
Properties
Gets or sets the items source.
C#
public IEnumerable ItemsSource { get; set; }
Gets or sets the selected items.
C#
public IList SelectedItems { get; set; }
Gets the collection source used internally by the heat map definition.
C#
protected abstract IHeatMapSource Source { get; }
Methods
This method is called when the ItemsSource changes.
C#
protected abstract void OnItemsSourceChanged()