dashboardcn
1

Radial Gauge

A semicircular or ring gauge, continuous or segmented, with content in the middle.

99.7%Uptime
48%Coverage
72
import { RadialGauge } from "@/components/ui/radial-gauge"

export default function RadialGaugeDemo() {

Installation

pnpm dlx shadcn@latest add https://dashboardcn.com/r/radial-gauge.json

Usage

import { RadialGauge } from "@/components/ui/radial-gauge"

<RadialGauge value={99.7} segments={40} size={180} thickness={12}>
  <span className="text-2xl font-semibold">99.7%</span>
  <span className="text-muted-foreground text-xs">Uptime</span>
</RadialGauge>

Examples

Inline in a KPI card

A small segmented ring next to a value.

API response time
132 ms
-10.8%
Error rate
1.4 %
+5.0%
Throughput
4.3k req/s
+10.0%
import { Card, CardContent } from "@/components/ui/card"
import { DeltaBadge } from "@/components/ui/delta-badge"
import { RadialGauge } from "@/components/ui/radial-gauge"