Create Custom HeatMap Source
This tutorial will walk you through the creation of a custom IHeatMapSource and a HeatMapDefinition that uses it. This allows you to customize the data fetching mechanism of the control, thus optimizing the performance and the memory footprint.
Creating Custom HeatMap Source
To create a custom source, implement the IHeatMapSource interface.
The interface exposes few methods and properties that are used by the heatmap to get the data from the given collection. For the sake of the simplicity, the example uses a multidimensional array to store data in the heatmap source.
Example 1: Creating custom data item that will store the information for each cell in the heatmap control
Example 2: Implementing the IHeatMapSource interface
Creating Custom HeatMapDefinition
To use the custom source, implement a custom definition that derives from the HeatMapDefinition class. The class exposes several protected methods and a property that should be overridden.
Example 3: Implementing the custom HeatMapDefinition
Using the Custom Definition
To use the custom definition you can create a multidimensional array of CustomHeatMapItem elements and populate the CustomHeatMapSource with it. Then pass it to the custom definition.
Example 4: Defining the RadHeatMap in XAML
Example 5: Populating the source with 4 million items and setting the heatmap definition
Figure 1: HeatMap with 4 million cells
The implementation shown in this example is merely a proof of concept. The main idea of the article is to show you the entry point that you can use in order to create a custom source and use it with the RadHeatMap control.
You can find a runnable example showing this approach in our GitHub SDK Examples repository.