Dashboards and Real-Time Visualization
Overview
Use this skill when the visualization is a system, not a screenshot. That means update cadence, latency, interaction design, observability, and rendering budgets matter as much as chart choice.
If the main request is about how to test a live dashboard, freeze streams, mock refresh behavior, or cover alerting and stale states end to end, route first to ../testing-data-visualizations/SKILL.md.
Mobile operational use is default unless explicitly excluded. Use ../../references/foundations/mobile-first-responsive-visualization.md to plan the mobile portrait dashboard, optional landscape mode, touch interaction, on-screen keyboard behavior, spotty connection handling, and alerting or vibration strategy.
This skill covers three tightly related problems:
- real-time streaming and refresh behavior
- layout hierarchy and scan-first dashboard composition
- interaction patterns and coordinated views
- performance and scale
Default Questions
- What is the update model?
- append-only stream
- periodic polling
- event bursts
- full snapshot replacement
- What latency matters?
- sub-second monitoring
- near-real-time operational review
- asynchronous reporting
- What must the user do?
- notice anomalies
- compare current versus historical
- inspect causes
- filter and drill down
- What are the hard limits?
- frame budget
- memory budget
- network budget
- exportability
- mobile bandwidth, battery, and thermal budget
- How many visualization instances can be visible at once?
- single focal chart
- a few coordinated panels
- many repeated tiles or sparklines
- What mobile state must work under interruption?
- spotty or offline connection
- app backgrounding or tab visibility changes
- one-handed use
- alert acknowledgment
- on-screen keyboard for filters or notes
Real-Time Design Rules
- Show time windows clearly.
- Distinguish live data from historical context.
- Handle missing, late, and out-of-order events explicitly.
- Keep the last known good visualization visible during reconnects, with stale, delayed, partial, offline, and error states distinct from normal live data.
- Show last updated time and update cadence near the evidence.
- Use aggregation, downsampling, or rollups before raw point dumping.
- Provide alert thresholds, annotations, and state transitions, not just moving lines.
- Use vibration, system notifications, or push-style alerts only for user-requested and meaningful state changes; always provide an in-app visual and accessible alert path.
- Keep the most important metric stable in position and encoding.
- Keep keys with their charts: direct labels or chart-adjacent keys beat a shared legend parked elsewhere on the screen.
- Use sparklines and other microcharts when compact trend context helps scanning, but rely on nearby labels and values to carry meaning.
- Design dashboards around situation awareness, not around maximum tile count.
- Prefer self-explanatory panels and concise labels over instructional paragraphs scattered across the UI.
Layout and Scanning Defaults
- Give the screen a clear focal path: current state first, then supporting context, then controls and secondary diagnostics.
- Avoid grids where every tile has equal visual weight unless the user truly needs uniform scanning across peers.
- Keep filters and toggles near the views they change instead of collecting everything in a distant control rail.
- Reserve callouts and narrative copy for anomalies, caveats, or actions. The normal state should be legible without tutorial text.
- Collapse or defer low-value controls so the live state stays visually dominant.
- On mobile, do not stack the filter rail or diagnostic controls before the live state. Use bottom sheets, drawers, tabs, or inline controls that return the user to the affected visualization after Apply, Cancel, Reset, or close.
- Use mobile landscape for monitoring views when a wide timeline, map, field, route, dense table, or multi-series trace is meaningfully clearer in a handheld wide orientation, but still provide a portrait summary.
Interaction Patterns
- overview first, filter or focus, then details on demand
- overview plus detail
- focus plus context
- brush and link
- hover for preview, click for commitment
- tap/focus for preview, tap again or explicit action for commitment on touch devices
- drill-down and drill-through
- persistent selections that survive updates
- explicit reset and undo paths
Interactivity should reduce cognitive load, not hide essential context behind constant mouse movement.
For mobile dashboards, add step-through controls, search, or nearest-item selection for dense marks; do not rely on hover, pixel-perfect taps, or one-finger chart panning that traps page scroll.
Performance Defaults
- Budget for 16 ms frames only when truly needed.
- Reduce work before optimizing code:
- fewer marks
- smarter aggregation
- smaller repaint regions
- lower-frequency updates where appropriate
- Choose the renderer intentionally:
- SVG for semantics and annotation
- Canvas2D for dense 2D raster workloads
- WebGL, deck.gl, PixiJS, Sigma.js, or Three.js for GPU-scale marks, maps, particles, graph rendering, or true 3D
- Use ring buffers, viewport culling, and multi-resolution summaries for long-running live views.
- Separate interaction state from render state so updates remain predictable.
- Use particles or glow in dashboards only for active flow, alert state, focus, or recency. Avoid ambient motion that competes with monitoring.
Output Expectations
- Describe the update model and failure modes.
- Describe mobile reconnect, stale-data, offline/partial-data, and low-bandwidth behavior.
- Explain what a user should understand at first scan before touching any controls.
- Explain what the mobile user sees first and how the main visualization remains visible around controls and keyboard input.
- Define the interaction contract before building widgets.
- State how the system degrades when data rate or mark count rises.
- Include a technical design section for new work covering simultaneous chart count, per-instance and page-level budgets, and maintenance implications of the chosen rendering strategy.
- Keep accessibility and export strategy visible.
References
- Shared theory:
../../references/foundations/storytelling-annotation-and-critique.md
../../references/foundations/layout-hierarchy-and-self-explanatory-ux.md
../../references/foundations/interaction-models-and-progressive-disclosure.md
../../references/foundations/mobile-first-responsive-visualization.md
../../references/foundations/implementation-design-and-tradeoffs.md
- Skill references:
./references/monitoring-vs-analysis.md
./references/streaming-data-pipelines.md
./references/interaction-patterns.md
./references/performance-and-degradation.md
../testing-data-visualizations/SKILL.md
Representative Prompts
- "Build a real-time operations dashboard from a WebSocket feed."
- "Keep this live chart smooth with 100 updates per second."
- "Design brushing, cross-filtering, and annotations for this monitoring UI."
- "Tell me if this should be a dashboard or a report."
- "Critique this monitoring screen using operational dashboard principles."
1---2name: dashboards-and-real-time-visualization3description: Design dashboards and live visualization systems. Use when the user needs monitoring views, streaming charts, coordinated interactions, downsampling, or performance-aware operational visualization.4---56# Dashboards and Real-Time Visualization78## Overview910Use this skill when the visualization is a system, not a screenshot. That means update cadence, latency, interaction design, observability, and rendering budgets matter as much as chart choice.1112If the main request is about how to test a live dashboard, freeze streams, mock refresh behavior, or cover alerting and stale states end to end, route first to `../testing-data-visualizations/SKILL.md`.1314Mobile operational use is default unless explicitly excluded. Use `../../references/foundations/mobile-first-responsive-visualization.md` to plan the mobile portrait dashboard, optional landscape mode, touch interaction, on-screen keyboard behavior, spotty connection handling, and alerting or vibration strategy.1516This skill covers three tightly related problems:1718- real-time streaming and refresh behavior19- layout hierarchy and scan-first dashboard composition20- interaction patterns and coordinated views21- performance and scale2223## Default Questions24251. What is the update model?26 - append-only stream27 - periodic polling28 - event bursts29 - full snapshot replacement302. What latency matters?31 - sub-second monitoring32 - near-real-time operational review33 - asynchronous reporting343. What must the user do?35 - notice anomalies36 - compare current versus historical37 - inspect causes38 - filter and drill down394. What are the hard limits?40 - frame budget41 - memory budget42 - network budget43 - exportability44 - mobile bandwidth, battery, and thermal budget455. How many visualization instances can be visible at once?46 - single focal chart47 - a few coordinated panels48 - many repeated tiles or sparklines496. What mobile state must work under interruption?50 - spotty or offline connection51 - app backgrounding or tab visibility changes52 - one-handed use53 - alert acknowledgment54 - on-screen keyboard for filters or notes5556## Real-Time Design Rules5758- Show time windows clearly.59- Distinguish live data from historical context.60- Handle missing, late, and out-of-order events explicitly.61- Keep the last known good visualization visible during reconnects, with stale, delayed, partial, offline, and error states distinct from normal live data.62- Show last updated time and update cadence near the evidence.63- Use aggregation, downsampling, or rollups before raw point dumping.64- Provide alert thresholds, annotations, and state transitions, not just moving lines.65- Use vibration, system notifications, or push-style alerts only for user-requested and meaningful state changes; always provide an in-app visual and accessible alert path.66- Keep the most important metric stable in position and encoding.67- Keep keys with their charts: direct labels or chart-adjacent keys beat a shared legend parked elsewhere on the screen.68- Use sparklines and other microcharts when compact trend context helps scanning, but rely on nearby labels and values to carry meaning.69- Design dashboards around situation awareness, not around maximum tile count.70- Prefer self-explanatory panels and concise labels over instructional paragraphs scattered across the UI.7172## Layout and Scanning Defaults7374- Give the screen a clear focal path: current state first, then supporting context, then controls and secondary diagnostics.75- Avoid grids where every tile has equal visual weight unless the user truly needs uniform scanning across peers.76- Keep filters and toggles near the views they change instead of collecting everything in a distant control rail.77- Reserve callouts and narrative copy for anomalies, caveats, or actions. The normal state should be legible without tutorial text.78- Collapse or defer low-value controls so the live state stays visually dominant.79- On mobile, do not stack the filter rail or diagnostic controls before the live state. Use bottom sheets, drawers, tabs, or inline controls that return the user to the affected visualization after Apply, Cancel, Reset, or close.80- Use mobile landscape for monitoring views when a wide timeline, map, field, route, dense table, or multi-series trace is meaningfully clearer in a handheld wide orientation, but still provide a portrait summary.8182## Interaction Patterns8384- overview first, filter or focus, then details on demand85- overview plus detail86- focus plus context87- brush and link88- hover for preview, click for commitment89- tap/focus for preview, tap again or explicit action for commitment on touch devices90- drill-down and drill-through91- persistent selections that survive updates92- explicit reset and undo paths9394Interactivity should reduce cognitive load, not hide essential context behind constant mouse movement.9596For mobile dashboards, add step-through controls, search, or nearest-item selection for dense marks; do not rely on hover, pixel-perfect taps, or one-finger chart panning that traps page scroll.9798## Performance Defaults991001. Budget for 16 ms frames only when truly needed.1012. Reduce work before optimizing code:102 - fewer marks103 - smarter aggregation104 - smaller repaint regions105 - lower-frequency updates where appropriate1063. Choose the renderer intentionally:107 - SVG for semantics and annotation108 - Canvas2D for dense 2D raster workloads109 - WebGL, deck.gl, PixiJS, Sigma.js, or Three.js for GPU-scale marks, maps, particles, graph rendering, or true 3D1104. Use ring buffers, viewport culling, and multi-resolution summaries for long-running live views.1115. Separate interaction state from render state so updates remain predictable.1126. Use particles or glow in dashboards only for active flow, alert state, focus, or recency. Avoid ambient motion that competes with monitoring.113114## Output Expectations115116- Describe the update model and failure modes.117- Describe mobile reconnect, stale-data, offline/partial-data, and low-bandwidth behavior.118- Explain what a user should understand at first scan before touching any controls.119- Explain what the mobile user sees first and how the main visualization remains visible around controls and keyboard input.120- Define the interaction contract before building widgets.121- State how the system degrades when data rate or mark count rises.122- Include a technical design section for new work covering simultaneous chart count, per-instance and page-level budgets, and maintenance implications of the chosen rendering strategy.123- Keep accessibility and export strategy visible.124125## References126127- Shared theory:128 - `../../references/foundations/storytelling-annotation-and-critique.md`129 - `../../references/foundations/layout-hierarchy-and-self-explanatory-ux.md`130 - `../../references/foundations/interaction-models-and-progressive-disclosure.md`131 - `../../references/foundations/mobile-first-responsive-visualization.md`132 - `../../references/foundations/implementation-design-and-tradeoffs.md`133- Skill references:134 - `./references/monitoring-vs-analysis.md`135 - `./references/streaming-data-pipelines.md`136 - `./references/interaction-patterns.md`137 - `./references/performance-and-degradation.md`138 - `../testing-data-visualizations/SKILL.md`139140## Representative Prompts141142- "Build a real-time operations dashboard from a WebSocket feed."143- "Keep this live chart smooth with 100 updates per second."144- "Design brushing, cross-filtering, and annotations for this monitoring UI."145- "Tell me if this should be a dashboard or a report."146- "Critique this monitoring screen using operational dashboard principles."