mirror of
https://github.com/dataease/dataease.git
synced 2026-06-16 20:42:07 +08:00
fix(漏斗图): 修复标签显示逻辑,调整重叠处理方式以改善视觉效果
This commit is contained in:
@@ -153,7 +153,7 @@ export class Funnel extends G2ChartView {
|
||||
position: label.position === 'middle' ? 'inside' : label.position,
|
||||
fontSize: label.fontSize,
|
||||
fill: label.color,
|
||||
transform: !label.fullDisplay ? [{ type: 'overflowHide' }] : []
|
||||
transform: label.fullDisplay === true ? [] : [{ type: 'overlapHide' }]
|
||||
})
|
||||
}
|
||||
if (label.conversionTag?.show) {
|
||||
|
||||
Reference in New Issue
Block a user