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" |]

show treemap "My Treemap" a1b6 { treemapCut: "readable" } with
  sum(T.Quantity)
  T.Label
  group by T.Label

User Contributed Notes
0 notes + add a note