react-code-dataset
/
chakra-ui
/apps
/compositions
/src
/examples
/charts
/donut-chart-with-angle-padding.tsx
| "use client" | |
| import { Chart, useChart } from "@chakra-ui/charts" | |
| import { Cell, Pie, PieChart, Tooltip } from "recharts" | |
| export const DonutChartWithAnglePadding = () => { | |
| const chart = useChart({ | |
| data: [ | |
| { name: "windows", value: 400, color: "blue.solid" }, | |
| { name: "mac", value: 300, color: "orange.solid" }, | |
| { name: "linux", value: 300, color: "pink.solid" }, | |
| ], | |
| }) | |
| return ( | |
| <Chart.Root boxSize="200px" chart={chart} mx="auto"> | |
| <PieChart> | |
| <Tooltip | |
| cursor={false} | |
| animationDuration={100} | |
| content={<Chart.Tooltip hideLabel />} | |
| /> | |
| <Pie | |
| innerRadius={80} | |
| outerRadius={100} | |
| isAnimationActive={false} | |
| data={chart.data} | |
| dataKey={chart.key("value")} | |
| paddingAngle={8} | |
| cornerRadius={4} | |
| > | |
| {chart.data.map((item) => ( | |
| <Cell key={item.name} fill={chart.color(item.color)} /> | |
| ))} | |
| </Pie> | |
| </PieChart> | |
| </Chart.Root> | |
| ) | |
| } | |