Interface IHeatMapSource
Describes the heat map source collection used by the heat map definition.
Inherited Members
Namespace: Telerik.WinControls.UI.HeatMap
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IHeatMapSource : IDisposable
Properties
ColumnsCount
Gets the columns count.
Declaration
int ColumnsCount { get; }
Property Value
System.Int32
|
ItemsSource
Gets or sets the collection of objects that will populate the heat map.
Declaration
HeatMapDataItemCollection ItemsSource { get; set; }
Property Value
HeatMapDataItemCollection
|
RowsCount
Gets the rows count.
Declaration
int RowsCount { get; }
Property Value
System.Int32
|
Methods
GetDataItem(Int32, Int32)
Gets the data item at the specified row and column index from the ItemsSource.
Declaration
HeatMapDataItem GetDataItem(int rowIndex, int columnIndex)
Parameters
System.Int32
rowIndex
The row index of the data item. |
System.Int32
columnIndex
The column index of the data item. |
Returns
HeatMapDataItem
The data item from the source. |
GetValue(Int32, Int32)
Gets the value from the source.
Declaration
double GetValue(int rowIndex, int columnIndex)
Parameters
System.Int32
rowIndex
The row index of the data item. |
System.Int32
columnIndex
The column index of the data item. |
Returns
System.Double
The value from the source. |