StyleCode Property: entryDisplay

🚧 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.

entryDisplay

Specifies that the entry is displayed or hidden.

Applies to Type Default
summary > entry Boolean true

Examples

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

show summary "My Summary" { 1..3, 1..3 } with
  sum(Sales.Quantity) { entryDisplay: False }
  sum(Sales.NetAmount)

User Contributed Notes
0 notes + add a note