mirror of
https://github.com/black-ant/Ant-Browser.git
synced 2026-07-14 18:48:55 +08:00
channel: master version: 1.0.0 source-ref: master published-at-utc: 2026-03-13T15:19:28Z
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import { PieChart, Pie, Cell, Tooltip, Legend, ResponsiveContainer } from 'recharts';
|
|
|
|
const data = [
|
|
{ name: '分类A', value: 400 },
|
|
{ name: '分类B', value: 300 },
|
|
{ name: '分类C', value: 300 },
|
|
{ name: '分类D', value: 200 },
|
|
{ name: '分类E', value: 100 },
|
|
];
|
|
|
|
const COLORS = ['#8884d8', '#83a6ed', '#8dd1e1', '#82ca9d', '#a4de6c'];
|
|
|
|
export function PieChartExample() {
|
|
return (
|
|
<ResponsiveContainer width="100%" height="100%">
|
|
<PieChart>
|
|
<Pie
|
|
data={data}
|
|
cx="50%"
|
|
cy="50%"
|
|
labelLine={true}
|
|
outerRadius={80}
|
|
fill="#8884d8"
|
|
dataKey="value"
|
|
label={({ name, percent }) => `${name}: ${(percent * 100).toFixed(0)}%`}
|
|
>
|
|
{data.map((_, index) => (
|
|
<Cell key={`cell-${index}`} fill={COLORS[index % COLORS.length]} />
|
|
))}
|
|
</Pie>
|
|
<Tooltip
|
|
contentStyle={{
|
|
backgroundColor: 'var(--color-bg-default)',
|
|
borderColor: 'var(--color-border-default)',
|
|
color: 'var(--color-text-primary)'
|
|
}}
|
|
formatter={(value: number) => [`${value}`, '数量']}
|
|
/>
|
|
<Legend
|
|
layout="horizontal"
|
|
verticalAlign="bottom"
|
|
align="center"
|
|
wrapperStyle={{ color: 'var(--color-text-primary)' }}
|
|
/>
|
|
</PieChart>
|
|
</ResponsiveContainer>
|
|
);
|
|
}
|