High-performance charting library forReact
Candlestick, line, area, bar, pie, heatmap and sparkline charts — streaming in realtime.
Tiny bundle, zero deps, 20+ themes, fully open source.
React · Svelte · VueRealtimeThemeableMIT
Get started
Install the package, add the AI skill, and start building charts.
1. Install
$ npm install @wick-charts/react2. AI skill
Wick Charts ships with a built-in AI skill. Your AI assistant will know every component, prop, and theme out of the box.
$ npx skills add mo4islona/wick-charts3. Build a chart
import { ChartContainer, CandlestickSeries, Tooltip, Crosshair, YAxis, TimeAxis} from '@wick-charts/react'; function Chart({ data }) { return ( <ChartContainer> <CandlestickSeries data={data} /> <Tooltip /> <Crosshair /> <YAxis /> <TimeAxis /> </ChartContainer> );}