Loading...
Loading...
Bklit UI charts and data visualization for any project using the @bklit shadcn registry. Install, compose, theme, and animate charts correctly. Triggers when working with @bklitui/ui/charts, @bklit components, data visualization, dashboards, or chart theming. Also invoke manually for chart tasks.
npx skill4agent add bklit/bklit-ui bklit-ui@bklitIMPORTANT: Run shadcn CLI commands with the project's package runner:,npx shadcn@latest, orpnpm dlx shadcn@latest.bunx --bun shadcn@latest
!`npx shadcn@latest info --json`@bklitnpx shadcn@latest add @bklit/<chart>GridChartTooltipchartCssVars--chart-*https://ui.bklit.com/docs/components/<slug>https://ui.bklit.com/charts/<slug>https://ui.bklit.com/studio?chart=<slug>LineChartBarChartAreaChartComposedChartChartTooltipchartCssVars@bklitui/ui/charts"var(--chart-…)"--chart-1--chart-5bg-popover text-popover-foregroundrevealSignaturekeypausedLiveLineChartChartTooltipcontentindicatorColoruseChart()@bklitcomponents.jsonnpx shadcn@latest add @bklit/<slug>@visx/*motion| Slug | Use when | Install | Docs | Gallery |
|---|---|---|---|---|
| Trends with filled regions under lines | | /docs/components/area-chart | /charts/area-chart |
| Category comparisons, stacked or grouped bars | | /docs/components/bar-chart | /charts/bar-chart |
| Time series, multi-line trends, markers | | /docs/components/line-chart | /charts/line-chart |
| Streaming / real-time data | | /docs/components/live-line-chart | /charts/live-line-chart |
| Mixed bar + line (or similar) on one axis | | /docs/components/composed-chart | /charts/composed-chart |
| Correlation, distribution, bubble sizing | | /docs/components/scatter-chart | /charts/scatter-chart |
| OHLC financial data, brushes | | /docs/components/candlestick-chart | /charts/candlestick-chart |
| Part-to-whole slices | | /docs/components/pie-chart | /charts/pie-chart |
| Donut / ring KPIs | | /docs/components/ring-chart | /charts/ring-chart |
| Multi-axis comparison | | /docs/components/radar-chart | /charts/radar-chart |
| Single-value KPI dial | | /docs/components/gauge-chart | /charts/gauge-chart |
| Stage conversion funnels | | /docs/components/funnel-chart | /charts/funnel-chart |
| Flow between nodes | | /docs/components/sankey-chart | /charts/sankey-chart |
| Geo regions colored by value | | /docs/components/choropleth-chart | /charts/choropleth-chart |
npx shadcn@latest info --json@bklitnpx shadcn@latest add @bklit/<slug># Project info
npx shadcn@latest info --json
# Add a chart
npx shadcn@latest add @bklit/line-chart
# Search registries (if configured)
npx shadcn@latest search @bklitimport { LineChart, Line, Grid, XAxis, ChartTooltip, chartCssVars } from "@bklitui/ui/charts";
<LineChart data={data} xDataKey="date">
<Grid horizontal />
<Line dataKey="users" stroke={chartCssVars.linePrimary} />
<XAxis />
<ChartTooltip />
</LineChart>