Я пытаюсь реализовать этот Piechart , но я хочу повернуть его без поворота, а затем снова повернуть его текст в горизонтальное положение. Проблема в том, что он не центрируется в своей позиции. Я пытался преобразовать центр происхождения.
Как это выглядит после вращения:
Как я хочу, чтобы это выглядело
Это мой код:
const data= [
{
name: props.language == "CP",
value: 300
},
{
name: props.language == "CP",
value: 300
}
];
const RADIAN = Math.PI / 180;
const renderCustomizedLabel = ({
cx,
cy,
midAngle,
innerRadius,
outerRadius,
percent,
index,
name
}) => {
const radius = innerRadius + (outerRadius - innerRadius) * 0.5;
const x = cx + radius * Math.cos(-midAngle * RADIAN);
const y = cy + radius * Math.sin(-midAngle * RADIAN);
console.log(cx, cy, midAngle, innerRadius, outerRadius, RADIAN, radius);
return (
<text
style={{ WebkitTransform: "rotate(90deg)", transformOrigin: "center" }}
x={x}
y={y}
fill="white"
textAnchor={x > cx ? "start" : "end"}
dominantBaseline="central"
>
{name}
</text>
);
};
<div style={{ width: "100%", height: 310 }} className="rotate">
<ResponsiveContainer>
<PieChart>
<Pie
data={data}
labelLine={false}
label={renderCustomizedLabel}
fill="#0eb89a"
dataKey="value"
/>
</PieChart>
</ResponsiveContainer>
CSS:
.rotate {
background-color: transparent;
transform: rotate(270deg);
margin: auto;
}