StyleCode Property: numbers
numbers
Specifies the number rendering mode for the number pipeline.
Applies to | Type | Default |
---|---|---|
barchart > vaxis > left barchart > vaxis > right barchart > series > value histogram > series > value linechart > vaxis > left linechart > vaxis > right linechart > series > value piechart > series > value plot > series > value plot > haxis plot > vaxis scalar > entry > value scatter > series > value scatter > haxis summary > entry > value table > column > value | old ,auto ,simple ,thousands ,millions ,percent ,scientific ,minutes ,seconds ,default | default |
Examples
// Example: barchart > vaxis > left
{ vaxis { left { numbers: default } } }
show barchart "My Chart" a1b6 with
sum(Quantity)
group by Category
// Example: barchart > vaxis > right
{ vaxis { right { numbers: default } } }
show barchart "My Chart" a1b6 with
sum(Quantity)
group by Category
// Example: barchart > series > value
show barchart "My Chart" a1b6 with
sum(Quantity) { value { numbers: default } }
group by Category
// Example: histogram > series > value
show histogram "My Histogram" a1 tomato with
PO.Delay { value { numbers: default } }
// Example: linechart > vaxis > left
{ vaxis { left { numbers: default } } }
show linechart "My Chart" a1b6 with
Day.StockOnHand
Day.StockOnOrder
// Example: linechart > vaxis > right
{ vaxis { right { numbers: default } } }
show linechart "My Chart" a1b6 with
Day.StockOnHand
Day.StockOnOrder
// Example: linechart > series > value
show linechart "My Chart" a1b6 with
Day.StockOnHand { value { numbers: default } }
Day.StockOnOrder
// Example: piechart > series > value
show piechart "My Chart" a1b6 with
sum(Quantity) { value { numbers: default } }
group by Category
// Example: plot > series > value
show plot "My Plot" a1d4 with
Sales.Quantity { value { numbers: default } }
Sales.Discount
// Example: plot > haxis
show plot "My Plot" a1d4 with
Sales.Quantity
Sales.Discount { numbers: default }
// Example: plot > vaxis
{ vaxis { numbers: default } }
show plot "My Plot" a1d4 with
Sales.Quantity
Sales.Discount
// Example: scalar > entry > value
show scalar "My Scalar" a1 tomato with
sum(Quantity) { value { numbers: default } }
// Example: scatter > series > value
show scatter "My Plot" a1d4 with
Sales.Quantity { value { numbers: default } }
Sales.Discount
// Example: scatter > haxis
show scatter "My Plot" a1d4 with
Sales.Quantity
Sales.Discount { numbers: default }
// Example: summary > entry > value
show summary "My Scalar" a1b3 tomato with
sum(Quantity) { value { numbers: default } }
sum(NetAmount)
// Example: table > column > value
show table "My Table" a1c4 tomato with
Orders.Date { value { numbers: default } }
Orders.Quantity
Details
The default
value is interpreted as auto
, except in a few contexts:
- in a
vaxis
(in a linechart, barchart or plot),default
indicates that the number formatting of the first series for that axis should be used.