在单击胜利饼图时,我试图以模态(使用材料UI)显示更大的饼图。现在的问题是图表上显示的工具提示的高度也增加了。
<svg className="svgContainer" viewBox={'-180,-20, 800, 450'}>
<VictoryPie
data={data}
padAngle={2}
labelComponent={<CustomLabelComponent />}
innerRadius={50}
padding={70}
colorScale={colorSchema}
animate={{ duration: 1000 }}
standalone={false}
style={{
labels: { fontSize: 12, fontWeight: "400",height: 10, textTransform: 'uppercase' },
data: {
fillOpacity: 0.7
}
}}
/>
</svg>