StyleCode Property: barchartVariant

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

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" { 1..4, 1..6 ; barchartVariant: "thin" } with
  sum(Items.Quantity)
  group by Items.Category

User Contributed Notes
0 notes + add a note