StyleCode Property: sliceUnselected

sliceUnselected

Specifies the text to display on unselected. Used only for some sliceField.

Applies to Type Default
slicepicker > entry Text < Unselected >

Examples

// Example: slicepicker > entry
table Items = with
  [| as Id |]
  [| "A" |]
  [| "B" |]
  [| "C" |]
  
table Slices[slice] = slice by [Items.Id] title: "Slice \{Items.Id}"

show slicepicker "Pick a slice" a1b3 with
  same(Items.Id) { sliceUnselected: "< Unselected >" }

User Contributed Notes
0 notes + add a note