Dot circle

Circle styletype: "circle"

A small solid dot for status indicators and bullets — recolored per render to show state via the API. Generate status visuals free with Imejis today.

Edit it — this is the actual editor panel
Design JSON — “Dot” variant
{
  "title": "Circle sample",
  "description": "A dynamic colored circle",
  "dimensions": {
    "width": 800,
    "height": 420
  },
  "background": {
    "color": "#ffffff"
  },
  "components": [
    {
      "id": "sample-circle",
      "key": "badge",
      "type": "circle",
      "position": {
        "x": 376,
        "y": 186
      },
      "rotation": 0,
      "size": {
        "width": 48,
        "height": 48
      },
      "dynamic": true,
      "properties": {
        "fillColor": "#10B981",
        "opacity": 1
      }
    }
  ]
}

Circle examples

Real renders of the dot circle — each one is the same component with different property values, and the API payload below each preview reproduces it exactly.

All-systems-operational dot

A softly glowing green dot for the header of an imagined status-page snapshot.

API overrides for this example
{
  "badge.fillColor": "#10B981",
  "badge.boxShadow": "0 0 16px rgba(16,185,129,0.7)"
}

Incident alert dot

A red alert dot on a dark ops-dashboard canvas flagging an imagined degraded service.

API overrides for this example
{
  "badge.fillColor": "#EF4444",
  "badge.boxShadow": "0 0 16px rgba(239,68,68,0.7)"
}

When to use the dot style

  • Online/offline status indicators
  • Uptime and health report dots
  • Bullet accents in list graphics

Use it dynamically via the API

Recolor per render with '<key>.fillColor' (or just '<key>'); opacity and borderColor are overridable too.

Full API request with this variant's current values — the playground above sends only the properties you change
curl --location 'https://render.imejis.io/v1/{{YOUR_DESIGN_ID}}' \
--header 'dma-api-key: {{YOUR_API_KEY}}' \
--header 'Content-Type: application/json' \
--data '{
    "badge.fillColor": "#10B981",
    "badge.opacity": 1
}'

Only send the properties you want to change — everything else keeps its design value. See the API documentation for all languages.

Other circle styles

See the circle component page for the full property reference and FAQs.