Reference

Everything you can build and do in dvt.

Every chart, table, interaction, and block is a few lines of JSON. This is the full sheet: what exists, what it looks like, and the spec that produces it.

Edit the spec, watch it render

Spec in, dashboard out

dashboard.json
{
  "schemaVersion": 1,
  "meta": { "title": "Monthly Revenue" },
  "theme": { "tokens": { "semantic": {
    "chart.series.1": "#4F46E5"
  } } },
  "panels": [{
    "id": "rev",
    "type": "chart:bar",
    "title": "Monthly Revenue",
    "data": {
      "sourceId": "warehouse-prod",
      "query": "SELECT month, SUM(revenue) AS revenue\n               FROM analytics.sales GROUP BY month"
    },
    "spec": {
      "xAxis": { "type": "category", "name": "Month" },
      "yAxis": { "type": "value", "name": "Revenue ($k)" },
      "series": [{ "type": "bar", "barMaxWidth": 48 }]
    }
  }]
}
Renders as: live ECharts

Follow the build

dvt is in founding research. Leave your email and we'll reach out when there's something to see — no newsletters, no noise.

No spam. We use this to reach out directly, nothing else.