| "use client" |
|
|
| import { Chart, useChart } from "@chakra-ui/charts" |
| import { Cell, Pie, PieChart, Tooltip } from "recharts" |
|
|
| export const DonutChartBasic = () => { |
| 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" }, |
| { name: "other", value: 200, color: "green.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")} |
| nameKey="name" |
| > |
| {chart.data.map((item) => { |
| return <Cell key={item.name} fill={chart.color(item.color)} /> |
| })} |
| </Pie> |
| </PieChart> |
| </Chart.Root> |
| ) |
| } |
|
|