1Sponsor

Bar Chart

Horizontal and vertical bar chart with labels

Terminal

Installation

pnpm dlx shadcn@latest add https://termcn.dev/r/bar-chart.json

Usage

import { BarChart } from "@/components/ui/bar-chart";
<BarChart
  data={[
    { label: "Mon", value: 12 },
    { label: "Tue", value: 28 },
  ]}
  width={40}
  showValues
  title="Weekly Traffic"
/>

API Reference

BarChart

PropTypeDefault
dataBarChartItem[]required
direction"horizontal" | "vertical""horizontal"
widthnumber30
heightnumber10
showValuesbooleantrue
titlestringundefined