...

StyleCode Property: entryTooltipText

entryTooltipText

Sets the tooltip of the entry.

Warning: this is a temporary feature, and will be replaced by a markdown property entryTooltip.

Applies to Type Default
summary > entry Text ""

Examples

// Example: summary > entry
table Sales = with
  [| as Quantity, as NetAmount |]
  [| 10, 40 |]
  [| 2, 10 |]
  [| 1, 20 |]
    
show summary "My Summary" a1b3 with
  sum(Sales.Quantity) { entryTooltipText: "My tooltip description" }
  sum(Sales.NetAmount)

User Contributed Notes
0 notes + add a note