StyleCode Property: summaryColumns

summaryColumns

Specifies how the tile splits the available space.
On “auto”, makes a number of column depending on the tile’s grid width.
When provided a number, split the available space in that many columns.

Applies to Type Default
summary Number, auto auto

Examples

// Example: summary
table Sales = with
  [| as Quantity, as NetAmount |]
  [| 10, 40 |]
  [| 2, 10 |]
  [| 1, 20 |]

show summary "My Summary" a1b3 { summaryColumns: 1 } with
  sum(Sales.Quantity)
  sum(Sales.NetAmount)

User Contributed Notes
0 notes + add a note