Navigation :
StyleCode Property: entryWidthFactor
entryWidthFactor
Specifies if the individual entry should take simple or double width to be displayed.
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) { entryWidthFactor: double }
sum(Sales.NetAmount)