StyleCode Property: summaryColumns

🚧 Work in progress — This documents the redesigned dashboard layout system, which is still under active development and subject to change. It is not compatible with the older v1 dashboard tile system.

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" { 1..3, 1..3 ; summaryColumns: 1 } with
  sum(Sales.Quantity)
  sum(Sales.NetAmount)

User Contributed Notes
0 notes + add a note