StyleCode Property: barchartValuePosition

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" a1b6 { barchartValuePosition: "right" } with
  sum(Items.Quantity)
  group by Items.Category

User Contributed Notes
0 notes + add a note