Navigation :
StyleCode Property: treemapCut
treemapCut
Set the algorithm used to cut the treemap into regions.
Applies to |
Type |
Default |
treemap |
aspectratio , readable |
aspectratio |
Examples
// Example: treemap
table T = with
[| as Quantity, as Label |]
[| 10, "A" |]
[| 1, "B" |]
[| 5, "B" |]
[| 4, "A" |]
[| 12, "C" |]
{ treemapCut: readable }
show treemap "My Treemap" a1b6 with
sum(T.Quantity)
T.Label
group by T.Label
1
2
3
4
5
6
7
8
9
10
11
12
13
14