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.
|
ItemsSource
Gets or sets the collection of objects that will populate the heat map.
Declaration
HeatMapDataItemCollection ItemsSource { get; set; }
Property Value
RowsCount
Gets the rows count.
Declaration
int RowsCount { get; }
Property Value
System.
|
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. The row index of the data item. |
System. The column index of the data item. |
Returns
Heat The data item from the source. |
GetValue(Int32, Int32)
Gets the value from the source.
Declaration
double GetValue(int rowIndex, int columnIndex)
Parameters
System. The row index of the data item. |
System. The column index of the data item. |
Returns
System. The value from the source. |