Components
Loading preview...
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 };Part of visx — browse the full library on 21st.dev.