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

This class represents a mapping between a member of the item in the HeatMapDefinition's ItemsSource and the row, or column, of the RadHeatMap.

Definition

Namespace:Telerik.WinControls.UI.HeatMap

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class MemberMapping : INotifyPropertyChanged

Inheritance: objectMemberMapping

Implements: INotifyPropertyChanged

Constructors

Initializes a new instance of the MemberMapping class.

C#
public MemberMapping()
C#
public MemberMapping(string header, string valueMember)
Parameters:headerstringvalueMemberstring

Properties

Gets or sets the colorizer. The colorizer is accountable for selecting a color for a cell, based on the cell's value.

C#
[Browsable(false)]
public virtual HeatMapColorizer Colorizer { get; set; }

Gets or sets the row-header (or column-header) text.

C#
public virtual string Header { get; set; }

Gets or sets the name of the property of the underlying item, which determines the value of a cell in the grid.

C#
public virtual string ValueMember { get; set; }

Methods

C#
protected virtual HeatMapColorizer CreateDefaultColorizer()
Returns:

HeatMapColorizer

C#
protected virtual void RaisePropertyChanged(string propertyName)
Parameters:propertyNamestring
C#
public override string ToString()
Returns:

string

Overrides: object.ToString()

Events

Occurs when a property value changes.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged