StyleCode Property: barchartValuePosition

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

barchartValuePosition

Where the value for a given bar is displayed.

Applies to Type Default
barchart auto, over, right auto

Examples

// Example: barchart
table Items = with
  [| as SKU, as Category, as Quantity |]
  [| "AAA", "CAT_1", 10 |]
  [| "BBB", "CAT_2", 20 |]
  [| "CCC", "CAT_1", 30 |]

show barchart "My BarChart" { 1..4, 1..6 ; barchartValuePosition: "right" } with
  sum(Items.Quantity)
  group by Items.Category

User Contributed Notes
0 notes + add a note