Skip to main content
Category: Shapes · Decorative: no data binding

Mental model

An Ellipse is a circle or oval. A vector round shape for badges, dots, and decoration.

Settings

Common shape settings — fill, stroke (color + width), opacity, and optional rotation speed. Make it a perfect circle with equal width and height.

Script API example

The same interactions from a dashboard script:
// Pulse a dot by resizing on a timer
let big = false;
setInterval(() => {
  big = !big;
  widget.resize('pulseDot', big ? 24 : 16, big ? 24 : 16);
}, 600);

All shapes

The shared shape settings.