Navigation : 
        
      
    
    
    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.
Examples
// Example: summary
table Sales = with
  [| as Quantity, as NetAmount |]
  [| 10, 40 |]
  [| 2, 10 |]
  [| 1, 20 |]
    
{ summaryColumns: 1 }
show summary "My Summary" a1b3 with
  sum(Sales.Quantity)
  sum(Sales.NetAmount)