const data = [
{ name: "Revenue", value: 85, fill: "var(--chart-1)" },
{ name: "Users", value: 62, fill: "var(--chart-2)" },
{ name: "Events", value: 91, fill: "var(--chart-3)" },
]
<RadialBarChart
data={data}
startAngle={90}
endAngle={-270}
innerRadius="30%"
outerRadius="100%"
barSize={12}
>
<PolarAngleAxis type="number" domain={[0, 100]} tick={false} />
<RadialBar
dataKey="value"
cornerRadius={6}
background={{ fill: "var(--muted)" }}
/>
<ChartLegend content={<ChartLegendContent />} />
</RadialBarChart>