ToolTip
The RadHeatMap control provides a tooltip behavior which can be used to visualize arbitrary information related to a data point. The ToolTip functionality is disable by default. To enable it, you need to set ShowToolTips property of the RadHeatMap to true.
Example 1: Enabling the ToolTip behavior of the RadHeatMap
Customizing the Tooltip
To customize the apperance of the tooltip you can use the HeatMapToolTipSettings propertyo of RadHeatMap. For demonstration purposes we will use a simple class that will represent one cell of the RadHeatMap control. This class will expose three properties:
- Row: А string property which gets or sets the row name of the corresponding cell.
- Column: А string property which gets or sets the column name of the corresponding cell.
- Value: Аn integer property which gets or sets the value of the corresponding cell.
Example 2: Creating the model
To fill the RadHeatMap with sample data we can create a list of TempInfo objects and set it as DataContext of the control.
Example 3: Populating the RadHeatMap control
After having the sample data ready, we can go in the XAML code and define the RadHeatMap and the ToolTipSettings.