StyleCode Property: barchartVariant

barchartVariant

Select one of the barchart tile variant.

Applies to Type Default
barchart auto, thick, thin 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 { barchartVariant: "thin" } with
  sum(Items.Quantity)
  group by Items.Category

User Contributed Notes
0 notes + add a note