Version

Showing Depth

The xamTreemap™ control’s ShowingDepth property allows the end user to set the maximum depth of the hierarchy at which the items will be displayed.

In XAML:

<ig:xamTreemap x:Name="Treemap" ShowingDepth="3" >
xamTreemap Showing Depth 01.png

In XAML:

<ig:xamTreemap x:Name="Treemap" ShowingDepth="2" >
xamTreemap Showing Depth 02.png

In XAML:

<ig:xamTreemap x:Name="Treemap" ShowingDepth="1" >
xamTreemap Showing Depth 03.png

Actual Showing Depth

The xamTreemap control’s ActualShowingDepth property specifies the maximum hierarchy level that is actually displayed. In the case when a custom ShowingDepth is set, the ActualShowingDepth is always lower or equal to the ShowingDepth.

If you have a two-level hierarchical data source assigned to the and if you set the ShowingDepth property value to 5, the ActualShowingDepth property value will be 2.