Cockpit Matrix Panel

The Matrix panel is a cockpit view that lets pilots juxtapose two dimensions of Chronos data and inspect the intersections, like a Chronos-aware pivot table.

Goals

Panel Anatomy

Dimensions (Examples)

Metrics

API Shape

GET /api/cockpit/matrix?row=<dimension>&col=<dimension>&metric=<metric>

Response:
{
  "rows": [{"id":"task","label":"Tasks"}],
  "cols": [{"id":"pending","label":"Pending"}],
  "cells": {"task|pending": {"value": 12, "items": ["Inbox Sweep"]}}
}

Implementation

Panel implementation lives in Utilities/Dashboard/Panels/Matrix/index.js.