Components
Loading preview...
a static vertical bar group
npx shadcn@latest add https://21st.dev/r/airbnb/bar-group-vertical
import { BarGroupChart } from "@/components/ui/bar-group-vertical";
const DemoBarGroupChart = () => {
const width = 700;
const height = 450;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<BarGroupChart width={width} height={height} />
</div>
);
};
export { DemoBarGroupChart };