Populating With Data
This article demonstrates how the RadHeatmap control can be populated with data.
Setting up the Model and ViewModel
In order to demonstrate how to populate a RadHeatMap with data, we will create a sample object that will hold temperature information and a viewmodel that will hold a collection of those objects.
Example 1: Setting up the model and viewmodel
Categorical definition
In order to visualize our data we need to set the Definition property of the control. Example 2 demonstrates how to set it to a CategoricalDefinition.
Example 2: Setting the Definition to a CategoricalDefinition
Figure 1: RadHeatMap with CategoricalDefinition
Vertical definition
Alternatively, we can also use a VerticalDefinition. We'll set the months as HeaderPath of our HeatMap. Thus the months supplied by the Month property of our underlying source will be visualized as column headers. For each row we'll display the Temperature and Rain values of the corresponding month.
Example 3: Setting the Definition to a VerticalDefinition
You can use the same code to declare a HorizontalDefinition.
Figure 2: RadHeatMap with VerticalDefinition
Find a runnable project of the previous example in the WPF Samples GitHub repository.