Skip to main content
Dark Dashboard Bar
DarkBarDashboard

Dark Dashboard Bar

High-density grouped bar chart on dark slate. Multi-channel attribution view for marketing dashboards.

Open in Studio

Theme tokens

Background
#111827
Font
Inter / 12px
Mode
dark

API snippet

POST this to /api/v1/render to render this template programmatically.

POST /api/v1/render
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY

{
  "type": "bar",
  "width": 800,
  "height": 400,
  "format": "png",
  "data": {
    "labels": [
      "Email",
      "Paid",
      "Organic",
      "Social",
      "Referral"
    ],
    "datasets": [
      {
        "label": "Leads",
        "data": [
          1240,
          2180,
          1840,
          960,
          620
        ],
        "backgroundColor": "#4ade80",
        "borderRadius": 5,
        "borderSkipped": false
      },
      {
        "label": "Conversions",
        "data": [
          312,
          481,
          492,
          214,
          187
        ],
        "backgroundColor": "#22d3ee",
        "borderRadius": 5,
        "borderSkipped": false
      }
    ]
  },
  "options": {
    "color": "#94a3b8",
    "plugins": {
      "legend": {
        "position": "top",
        "align": "start",
        "labels": {
          "color": "#94a3b8",
          "usePointStyle": true,
          "padding": 16
        }
      },
      "title": {
        "display": true,
        "text": "Channel Attribution",
        "color": "#f0fdf4",
        "font": {
          "size": 14,
          "weight": "bold"
        }
      }
    },
    "scales": {
      "x": {
        "grid": {
          "display": false
        },
        "border": {
          "display": false
        },
        "ticks": {
          "color": "#64748b"
        }
      },
      "y": {
        "grid": {
          "color": "rgba(148, 163, 184, 0.18)"
        },
        "border": {
          "display": false
        },
        "ticks": {
          "color": "#64748b"
        }
      }
    }
  },
  "theme": {
    "palette": [
      "#4ade80",
      "#22d3ee",
      "#a78bfa",
      "#fb7185",
      "#fbbf24",
      "#f472b6"
    ],
    "backgroundColor": "#111827",
    "fontFamily": "Inter",
    "fontSize": 12,
    "gridColor": "rgba(148, 163, 184, 0.18)",
    "mode": "dark"
  }
}

More Bar templates