Components
Loading preview...
here is horizontal bar stack with data
npx shadcn@latest add https://21st.dev/r/airbnb/bar-stac
import { BarStackHorizontalChart } from "@/components/ui/bar-stac";
const DemoBarStackHorizontalChart = () => {
const width = 800;
const height = 500;
return (
<div className="flex w-full h-screen justify-center items-center bg-gray-100">
<BarStackHorizontalChart width={width} height={height} events={true} />
</div>
);
};
export { DemoBarStackHorizontalChart };