Machine-readable page content
Canonical: https://semiotic.nteract.io/server/chart-clinic
Chart Clinic (Beta)
Inspect a serializable chart configuration before shipping it. Chart Clinic is deliberately read-only: it validates and diagnoses the configuration, renders static evidence when safe, reports observed revisions, and suggests the relevant package lane. It does not author, repair, persist, or execute visitor-supplied code.
Configuration
Use JSON only: function accessors and callbacks are outside the serializable inspection boundary.
Verdict
Inspectable and renderedThe configuration passed structural checks and produced a non-empty static scene.
Configuration and diagnostics
Normalized config
{ "component": "LineChart", "props": { "data": [ { "month": 1, "revenue": 42 }, { "month": 2, "revenue": 58 }, { "month": 3, "revenue": 51 } ], "xAccessor": "month", "yAccessor": "revenue", "title": "Monthly revenue" }, "version": "1" }Diagnostics
No chart diagnostics.
Reasons
No blocking reasons.
Scene evidence and revisions
Scene summary
{ "status": "ok", "frameType": "xy", "markCount": 1, "markCountByType": { "line": 1 }, "xDomain": [ 1, 3 ], "yDomain": [ 40.4, 59.6 ] }Revision state
No retained stream-host revision snapshot was supplied; this static inspection cannot invent one.
Bundle guidance
This chart is in the ChartDefinition pilot. Its module and server support are explicit; existing family facades remain compatible.
- Family
- xy
- Browser import
semiotic/xy- Server evidence
semiotic/server- Documentation
/charts/line-chart