Interface
IHeatMapSource

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

Definition

Namespace:Telerik.Windows.Controls.HeatMap

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

cs-api-definition
public interface IHeatMapSource : IDisposable

Inherited Members IDisposable.Dispose()

Properties

ColumnsCount

Gets the columns count.

Declaration

cs-api-definition
int ColumnsCount { get; }

Property Value

int

ItemsSource

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

Declaration

cs-api-definition
IEnumerable ItemsSource { get; set; }

Property Value

IEnumerable

RowsCount

Gets the rows count.

Declaration

cs-api-definition
int RowsCount { get; }

Property Value

int

Methods

GetDataItem(int, int)

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

Declaration

cs-api-definition
object GetDataItem(int rowIndex, int columnIndex)

Parameters

rowIndex

int

The row index of the data item.

columnIndex

int

The column index of the data item.

Returns

object

The data item from the source.

GetValue(int, int)

Gets the value from the source.

Declaration

cs-api-definition
double GetValue(int rowIndex, int columnIndex)

Parameters

rowIndex

int

The row index of the data item.

columnIndex

int

The column index of the data item.

Returns

double

The value from the source.