InfoBar
import { InfoBar } from '@wick-charts/react'; <InfoBar> {({ snapshots, time, isHover }) => ( <span>{snapshots.length} series</span> )}</InfoBar>Compact OHLC/series info bar rendered as a flex row above the chart canvas. Pairs with Tooltip (which then only renders its floating near-cursor part).
Pass a render-prop child for a custom layout — the built-in UI is used when children is omitted.
Persistent header strip showing the last-known values from each series, including direction arrows and percent change. Stays visible when no hover is active — the companion to <Tooltip>.
Props
Render prop
// children: (ctx: InfoBarRenderContext) => ReactNode<InfoBar> {({ snapshots, time, isHover }) => ( <span>{snapshots.length} series</span> )}</InfoBar>