Skip to main content

Circle

This node renders a circular shape or arc.

The Circle node draws vector graphics for circles, rings, and pie segments.

The Circle node renders an SVG circle. It supports fill, stroke (border), and start/end angles, allowing you to create full circles, donuts, or arcs (like a progress ring).

Inputs

Dimension

DataDescription
SizeDiameter of the circle in pixels.

Fill

DataDescription
FillBoolean. Enable fill color.
Fill ColorThe interior color.

Stroke

DataDescription
StrokeBoolean. Enable border line.
Stroke WidthThickness of the line.
Stroke ColorColor of the line.
Line Cap"Butt" (flat) or "Round" (rounded ends for arcs).

Style (Arcs)

DataDescription
Start AngleStarting degree (0-360).
End AngleEnding degree (0-360).

Outputs

General

DataDescription
Node ReferenceReference to the SVG element.

Usage

Simple Dot

  1. Size: 20.
  2. Fill: True, Color: Red.
  3. Stroke: False.

Progress Ring

  1. Fill: False.
  2. Stroke: True, Width: 10, Color: Blue.
  3. Start Angle: 0.
  4. Connect a variable (0-360) to End Angle to animate progress.

Detailed Behavior

  • SVG: Renders as an <svg> element.
  • Angles: 0 degrees is usually at the top or right depending on implementation (check visually).

Troubleshooting

  • Clipped: If Stroke Width is large, ensure the container has enough padding or the size includes the stroke.