Components
Loading preview...
Here is Line Chart component
npx shadcn@latest add https://21st.dev/r/LegionWebDev/line-chart"use client";
import { CartesianGrid, Line, LineChart, XAxis } from "recharts";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import {
ChartConfig,
ChartContainer,
ChartTooltip,
ChartTooltipContent,
} from "@/components/ui/line-chart";
import { Badge } from "@/components/ui/badge";
import { TrendingUp } from "lucide-react";
const chartData = [
{ month: "January", desktop: 186 },
{ month: "February", desktop: 305 },
{ month: "March", desktop: 237 },
{ month: "April", desktop: 73 },
{ month: "May", desktop: 209 },
{ month: "June", desktop: 214 },
];
const chartConfig = {
desktop: {
label: "Desktop",
color: "var(--chart-2)",
},
} satisfies ChartConfig;
export default function PingingDotChart() {
return (
<Card>
<CardHeader>
<CardTitle>
Pinging Dot Chart
<Badge
variant="outline"
className="text-green-500 bg-green-500/10 border-none ml-2"
>
<TrendingUp className="h-4 w-4" />
<span>5.2%</span>
</Badge>
</CardTitle>
<CardDescription>January - June 2024</CardDescription>
</CardHeader>
<CardContent>
<ChartContainer config={chartConfig}>
<LineChart
accessibilityLayer
data={chartData}
margin={{
left: 12,
right: 12,
}}
>
<CartesianGrid vertical={false} />
<XAxis
dataKey="month"
tickLine={false}
axisLine={false}
tickMargin={8}
tickFormatter={(value) => value.slice(0, 3)}
/>
<ChartTooltip
cursor={false}
content={<ChartTooltipContent hideLabel />}
/>
<Line
dataKey="desktop"
type="linear"
stroke="var(--color-desktop)"
strokeDasharray="4 4"
dot={<CustomizedDot />}
/>
</LineChart>
</ChartContainer>
</CardContent>
</Card>
);
}
const CustomizedDot = (props: React.SVGProps<SVGCircleElement>) => {
const { cx, cy, stroke } = props;
return (
<g>
{/* Main dot */}
<circle cx={cx} cy={cy} r={3} fill={stroke} />
{/* Ping animation circles */}
<circle
cx={cx}
cy={cy}
r={3}
stroke={stroke}
fill="none"
strokeWidth="1"
opacity="0.8"
>
<animate
attributeName="r"
values="3;10"
dur="1s"
repeatCount="indefinite"
/>
<animate
attributeName="opacity"
values="0.8;0"
dur="1s"
repeatCount="indefinite"
/>
</circle>
</g>
);
};