File size: 1,881 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
---
title: Donut Chart
description:
Used to display data as segments of a circular chart that looks like a donut
links:
storybook: charts-donut-chart--basic
recharts: https://recharts.org/en-US/api/PieChart
---
<ExampleTabs name="charts/donut-chart-basic" />
## Usage
```tsx
import { Chart, useChart } from "@chakra-ui/charts"
import { Cell, Pie, PieChart } from "recharts"
```
```tsx
<Chart.Root>
<PieChart>
<Pie>
<Cell />
</Pie>
</PieChart>
</Chart.Root>
```
## Examples
### Point Label
To display a point label on the chart, use the `PointLabel` component from
`recharts`.
<ExampleTabs name="charts/donut-chart-with-point-label" />
### Start and End Angle
Customizing the `startAngle` and `endAngle` prop of the `<Pie>` component can
create partial donuts.
```tsx
<Pie startAngle={180} endAngle={0}>
{/* ... */}
</Pie>
```
<ExampleTabs name="charts/donut-chart-with-start-and-end-angle" />
### Angle Padding
To add some space between the segments, use the `paddingAngle` prop.
> **Pro Tip:** To round the corners of the segments, use the `cornerRadius`
> prop.
<ExampleTabs name="charts/donut-chart-with-angle-padding" />
### Detached Segment
To create an effect where the active segment is scaled and detached from the
rest of the segments, use the `activeIndex` prop and the `activeShape` prop.
```tsx /activeIndex/ /activeShape/
<Pie
innerRadius={60}
outerRadius={100}
activeIndex={0}
activeShape={<Sector outerRadius={120} />}
/>
```
<ExampleTabs name="charts/donut-chart-with-detached-segment" />
### Centered Text
Use the `Chart.RadialText` component to display a centered text on the chart
with an optional description.
```tsx
<Label
content={({ viewBox }) => (
<Chart.RadialText viewBox={viewBox} title={1200} description="users" />
)}
/>
```
<ExampleTabs name="charts/donut-chart-with-centered-text" />
|