Donut Chart
Used to display data as segments of a circular chart that looks like a donut
"use client"
import { Chart, useChart } from "@chakra-ui/charts"
import { Cell, Pie, PieChart, Tooltip } from "recharts"
const Demo = () => {
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>
)
}
Usage
import { Chart, useChart } from "@chakra-ui/charts"
import { Cell, Pie, PieChart } from "recharts"
<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
.
"use client"
import { Chart, useChart } from "@chakra-ui/charts"
import { Cell, Pie, PieChart, Tooltip } from "recharts"
const Demo = () => {
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 margin={{ left: 40 }}>
<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"
labelLine={{ strokeWidth: 1 }}
label={{
fill: chart.color("fg.muted"),
}}
>
{chart.data.map((item) => (
<Cell
key={item.name}
strokeWidth={2}
fill={chart.color(item.color)}
/>
))}
</Pie>
</PieChart>
</Chart.Root>
)
}
Start and End Angle
Customizing the startAngle
and endAngle
prop of the <Pie>
component can
create partial donuts.
<Pie startAngle={180} endAngle={0}>
{/* ... */}
</Pie>
"use client"
import { Chart, useChart } from "@chakra-ui/charts"
import { Cell, Pie, PieChart, Tooltip } from "recharts"
const Demo = () => {
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={60}
outerRadius={100}
isAnimationActive={false}
data={chart.data}
dataKey={chart.key("value")}
nameKey="name"
startAngle={180}
endAngle={0}
>
{chart.data.map((item) => (
<Cell key={item.name} fill={chart.color(item.color)} />
))}
</Pie>
</PieChart>
</Chart.Root>
)
}
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.
"use client"
import { Chart, useChart } from "@chakra-ui/charts"
import { Cell, Pie, PieChart, Tooltip } from "recharts"
const Demo = () => {
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>
)
}
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.
<Pie
innerRadius={60}
outerRadius={100}
activeIndex={0}
activeShape={<Sector outerRadius={120} />}
/>
"use client"
import { Chart, useChart } from "@chakra-ui/charts"
import { Cell, Pie, PieChart, Sector, Tooltip } from "recharts"
const Demo = () => {
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={60}
outerRadius={100}
isAnimationActive={false}
data={chart.data}
dataKey={chart.key("value")}
nameKey={chart.key("name")}
activeIndex={0}
activeShape={<Sector outerRadius={120} />}
strokeWidth={5}
>
{chart.data.map((item) => (
<Cell key={item.name} fill={chart.color(item.color)} />
))}
</Pie>
</PieChart>
</Chart.Root>
)
}
Centered Text
Use the Chart.RadialText
component to display a centered text on the chart
with an optional description.
<Label
content={({ viewBox }) => (
<Chart.RadialText viewBox={viewBox} title={1200} description="users" />
)}
/>
"use client"
import { Chart, useChart } from "@chakra-ui/charts"
import { Cell, Label, Pie, PieChart, Tooltip } from "recharts"
const Demo = () => {
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"
>
<Label
content={({ viewBox }) => (
<Chart.RadialText
viewBox={viewBox}
title={chart.getTotal("value").toLocaleString()}
description="users"
/>
)}
/>
{chart.data.map((item) => (
<Cell key={item.color} fill={chart.color(item.color)} />
))}
</Pie>
</PieChart>
</Chart.Root>
)
}