TreeMap > Layouts |
TreeMap enables its data items and groups, represented as rectangles, to be displayed in a variety of arrangements. The tree map rectangles can be arranged into squarified, horizontal, and vertical layouts. To set the desired tree map layout, you need to use ChartType property of TreeMap class, which takes TreeMapType enum. The default layout of TreeMap chart control is squarified.
The squarified layout tries to arrange the tree map rectangles (data items and groups) as approximate squares. This layout makes it easier to make comparisons and point patterns, as the accuracy of presentation is enhanced in squarified arrangement. This layout is very useful for large data sets.
treeMap1.ChartType = C1.Chart.TreeMapType.Squarified
treeMap1.ChartType = C1.Chart.TreeMapType.Squarified;
The horizontal layout stacks the tree map rectangles one over the other as rows. Here the width of the rectangles is greater than their height.
treeMap1.ChartType = C1.Chart.TreeMapType.Horizontal
treeMap1.ChartType = C1.Chart.TreeMapType.Horizontal;
The vertical layout arranges the tree map rectangles adjacent to each other as columns. Here the height of the rectangles is greater than their width.
treeMap1.ChartType = C1.Chart.TreeMapType.Vertical
treeMap1.ChartType = C1.Chart.TreeMapType.Vertical;
Horizontal and vertical treemaps are helpful in preserving and displaying the order of information.