Multi-chart layouts
Split-screen, 2×2, side-by-side — every Phase-1b layout pattern, plus the v1 workaround.
The Layouts button in the top bar will surface 1 / 2H / 2V / 4
split modes in Phase 1b — see
reference/roadmap. Until then, render
multiple <EliteChart /> instances yourself.
Quick example — 2×2 grid
How it works
Each <EliteChart /> mounts an independent engine, with its own
stores and persistence keys. They don't share state today; v1.1
lands the useSharedStore flag for syncing crosshair / theme across
instances.
Performance scales linearly — four charts at 1080p hold the 60 fps budget on M1 / Ryzen-class CPUs.
Variations
Locked timeframe across the grid
Side-by-side — 2 columns, full height
API
| Pattern | Notes |
|---|---|
| Independent engines | one Zustand store set per instance |
| Shared crosshair | Phase 1.1 — useSharedStore flag |
| Shared theme | works today via top-level MessagesProvider |