Populating With Data RadPivotMap
RadPivotMap expects data in tabular format and displays a treemap with grouped data, according to the GroupDefinition-s set.
Assuming that you have the following class:
Example 1
Using the above class we can now create sample data.
Example 2
To bind the RadPivotMap you should use the GroupDefinition collection and add several GroupDefinitions - one for each of the properties as presented in the class. The ValuePath property specifies from where the data should be taken. We can also change the color of the groups using Colorizer.
Example 3
Figure 1
You can bind the RadPivotMap to any source that implements one of the following interfaces:
IEnumerable - supports simple iteration of a collection. See the MSDN article for more on IEnumerable.
ICollection - extends IEnumerable and supports size, enumerator, and synchronization methods for collections.
IList - extends ICollection and is the base class for lists.