74 lines
1.9 KiB
TypeScript
74 lines
1.9 KiB
TypeScript
"use client";
|
|
|
|
import { TrendingUp } from "lucide-react";
|
|
import { PolarAngleAxis, PolarGrid, Radar, RadarChart } from "recharts";
|
|
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import {
|
|
ChartConfig,
|
|
ChartContainer,
|
|
ChartTooltip,
|
|
ChartTooltipContent,
|
|
} from "@/components/ui/chart";
|
|
|
|
const chartData = [
|
|
{ month: "January", desktop: 186 },
|
|
{ month: "February", desktop: 305 },
|
|
{ month: "March", desktop: 237 },
|
|
{ month: "April", desktop: 273 },
|
|
{ month: "May", desktop: 209 },
|
|
{ month: "June", desktop: 214 },
|
|
];
|
|
|
|
const chartConfig = {
|
|
desktop: {
|
|
label: "Desktop",
|
|
color: "hsl(var(--chart-1))",
|
|
},
|
|
} satisfies ChartConfig;
|
|
|
|
export function RadarChartSimple() {
|
|
return (
|
|
<Card>
|
|
{/* <CardHeader className="items-center pb-4">
|
|
<CardTitle>Radar Chart</CardTitle>
|
|
<CardDescription>
|
|
Showing total visitors for the last 6 months
|
|
</CardDescription>
|
|
</CardHeader> */}
|
|
<CardContent className="pb-0">
|
|
<ChartContainer
|
|
config={chartConfig}
|
|
className="mx-auto aspect-square max-h-[350px] 2xl:max-h-[250px]"
|
|
>
|
|
<RadarChart data={chartData}>
|
|
<ChartTooltip cursor={false} content={<ChartTooltipContent />} />
|
|
<PolarAngleAxis dataKey="month" />
|
|
<PolarGrid />
|
|
<Radar
|
|
dataKey="desktop"
|
|
fill="var(--color-desktop)"
|
|
fillOpacity={0.6}
|
|
/>
|
|
</RadarChart>
|
|
</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">
|
|
January - June 2024
|
|
</div>
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
}
|