Class MemberMapping
This class represents a mapping between a member of the item in the HeatMapDefinition's ItemsSource and the row, or column, of the RadHeatMap.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.HeatMap
Assembly: Telerik.WinControls.UI.dll
Syntax
public class MemberMapping : INotifyPropertyChanged
Constructors
MemberMapping()
MemberMapping(String, String)
Declaration
public MemberMapping(string header, string valueMember)
Parameters
System.String
header
|
System.String
valueMember
|
Properties
Colorizer
Gets or sets the colorizer. The colorizer is accountable for selecting a color for a cell, based on the cell's value.
Declaration
public virtual HeatMapColorizer Colorizer { get; set; }
Property Value
HeatMapColorizer
|
Header
Gets or sets the row-header (or column-header) text.
Declaration
public virtual string Header { get; set; }
Property Value
System.String
|
ValueMember
Gets or sets the name of the property of the underlying item, which determines the value of a cell in the grid.
Declaration
public virtual string ValueMember { get; set; }
Property Value
System.String
|
Methods
CreateDefaultColorizer()
RaisePropertyChanged(String)
Declaration
protected virtual void RaisePropertyChanged(string propertyName)
Parameters
System.String
propertyName
|
ToString()
Declaration
public override string ToString()
Returns
System.String
|
Overrides
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|