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

Describes the heat map source collection used by the heat map definition.

Definition

Namespace:Telerik.WinControls.UI.HeatMap

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public interface IHeatMapSource : IDisposable

Inherited Members IDisposable.Dispose()

Properties

Gets the columns count.

C#
int ColumnsCount { get; }

Gets or sets the collection of objects that will populate the heat map.

C#
HeatMapDataItemCollection ItemsSource { get; set; }

Gets the rows count.

C#
int RowsCount { get; }

Methods

Gets the data item at the specified row and column index from the ItemsSource.

C#
HeatMapDataItem GetDataItem(int rowIndex, int columnIndex)
Parameters:rowIndexint

The row index of the data item.

columnIndexint

The column index of the data item.

Returns:

HeatMapDataItem

The data item from the source.

Gets the value from the source.

C#
double GetValue(int rowIndex, int columnIndex)
Parameters:rowIndexint

The row index of the data item.

columnIndexint

The column index of the data item.

Returns:

double

The value from the source.