下面是一个通用的胜利代码。
<svg viewBox={viewBox}>
<VictoryPie
standalone={false}
width={width} height={height}
data={data}
innerRadius={innerRadius}
colorScale={colorScale}
/>
<VictoryLegend x={width - 50} y={30}
title="Totals"
centerTitle
orientation="vertical"
gutter={20}
style={{
title: { fontSize: 15 }
}}
data={legendDataWithStyle}
standalone={false}
/>
</svg>
这是对应的Jsfiddle
我是VictoryLegend x={width - 50} y={30}
用来调节饼图和图例的距离的。但我发现很难精确调整它。如何增加饼图和图例的距离?