102 lines
2.6 KiB
TypeScript
102 lines
2.6 KiB
TypeScript
"use client";
|
|
|
|
import { TrendingUp } from "lucide-react";
|
|
import { Bar, BarChart, XAxis, YAxis } from "recharts";
|
|
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import {
|
|
ChartConfig,
|
|
ChartContainer,
|
|
ChartTooltip,
|
|
ChartTooltipContent,
|
|
} from "@/components/ui/chart";
|
|
|
|
const chartData = [
|
|
{ browser: "chrome", visitors: 275, fill: "var(--color-chrome)" },
|
|
{ browser: "safari", visitors: 200, fill: "var(--color-safari)" },
|
|
{ browser: "firefox", visitors: 187, fill: "var(--color-firefox)" },
|
|
{ browser: "edge", visitors: 173, fill: "var(--color-edge)" },
|
|
{ browser: "other", visitors: 90, fill: "var(--color-other)" },
|
|
];
|
|
|
|
const chartConfig = {
|
|
visitors: {
|
|
label: "Visitors",
|
|
},
|
|
chrome: {
|
|
label: "Chrome",
|
|
color: "hsl(var(--chart-1))",
|
|
},
|
|
safari: {
|
|
label: "Safari",
|
|
color: "hsl(var(--chart-2))",
|
|
},
|
|
firefox: {
|
|
label: "Firefox",
|
|
color: "hsl(var(--chart-3))",
|
|
},
|
|
edge: {
|
|
label: "Edge",
|
|
color: "hsl(var(--chart-4))",
|
|
},
|
|
other: {
|
|
label: "Other",
|
|
color: "hsl(var(--chart-5))",
|
|
},
|
|
} satisfies ChartConfig;
|
|
|
|
export function BarChartMixed() {
|
|
return (
|
|
<Card className="flex flex-col">
|
|
<CardHeader>
|
|
{/* <CardTitle>Bar Chart - Mixed</CardTitle>
|
|
<CardDescription>January - June 2024</CardDescription> */}
|
|
</CardHeader>
|
|
<CardContent className="flex-1">
|
|
<ChartContainer config={chartConfig}>
|
|
<BarChart
|
|
accessibilityLayer
|
|
data={chartData}
|
|
layout="vertical"
|
|
margin={{
|
|
left: 0,
|
|
}}
|
|
>
|
|
<YAxis
|
|
dataKey="browser"
|
|
type="category"
|
|
tickLine={false}
|
|
tickMargin={10}
|
|
axisLine={false}
|
|
tickFormatter={(value) =>
|
|
chartConfig[value as keyof typeof chartConfig]?.label
|
|
}
|
|
/>
|
|
<XAxis dataKey="visitors" type="number" hide />
|
|
<ChartTooltip
|
|
cursor={false}
|
|
content={<ChartTooltipContent hideLabel />}
|
|
/>
|
|
<Bar dataKey="visitors" layout="vertical" radius={5} />
|
|
</BarChart>
|
|
</ChartContainer>
|
|
</CardContent>
|
|
<CardFooter className="flex-col gap-2 text-pretty text-center text-sm">
|
|
<div className="flex items-center gap-2 font-medium leading-none">
|
|
Trending up by 5.2% this month <TrendingUp className="size-4" />
|
|
</div>
|
|
<div className="leading-none text-muted-foreground">
|
|
Results for the top 5 browsers
|
|
</div>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|