Skip to main content
Version: Next

Color Picker

A colour picker exposing the chosen colour as a CSS string, for the times an operator — not the author — decides what something looks like.

The Color Picker component as it renders with its default settings.The Color Picker component as it renders with its default settings.

Reach for it when you need:

  • Letting an operator recolour a trend series or an overlay
  • A colour field inside a Form, stored through a Named Query

Component name: ColorPicker · Category: Input

In the palette: Pick a color — exposes the chosen CSS color string on its value

Properties

Any property can be bound to a tag, another component's property, or a query.

PropertyTypeDefaultDescription
valuecolor#3b82f6The chosen color as a CSS string (#rrggbb, #rrggbbaa or rgba(...)) — reflects the selection, and bindable.
modeenumpopoverpopover = a compact swatch field that opens the picker on click; inline = the picker itself, always visible, filling the widget. Inline wants a taller box (about 240x320). Options: popover · inline.
defaultValuecolor#3b82f6What the Reset button restores. Leave blank and Reset becomes Clear (empties the value).
alphabooleantrueOffer the transparency slider. Off, only opaque colors can be picked.
showValuebooleantrueShow the editable color string — beside the swatch in popover mode, inside the panel in inline mode.
showResetbooleantrueShow the reset button (on the control, and in the picker popover).
showPresetsbooleantrueShow the quick-pick swatch row inside the picker.
presetsarray[]Quick-pick swatches — your own palette (e.g. the plant's equipment-state colors). Leave empty for the standard set.
placeholderstring#rrggbbHint shown in the color field while it is empty (popover mode).
titlestringColor
showTitlebooleantrue
titleSizenumber13
shadowbooleantrueShow a subtle drop-shadow on the control. Turn off for a flat look.
disabledbooleanfalse
stylestyle{}Custom CSS properties

Events

Attach event actions to these in the Event Manager.

EventLabelGroupPayload
clickClickMouseThe DOM event.
dblclickDouble clickMouseThe DOM event.
contextmenuRight clickMouseThe DOM event.
mouseenterMouse enterMouseThe DOM event.
mouseleaveMouse leaveMouseThe DOM event.
Right-click behaves differently in the Designer

contextmenu fires your configured actions at runtime only — in LiveView and in preview. On the Designer canvas the right-click is captured to open the Event Manager, so testing it there will not run your actions. Test right-click in preview.

Notes

The value is a CSS colour string, so it can be bound straight into the colour property of another component, or written to a tag. It round-trips in whatever notation it is given — a value stored as rgba(...) stays rgba(...), a hex value stays hex — so binding it to a property that expects one form will not silently rewrite the other. Set defaultValue to whatever the screen should fall back to and the reset button restores exactly that; leave it blank and reset instead clears the value. Dragging the gradient commits ONE value when the gesture settles, not one per frame, so it is safe to bind directly to a tag.