refactor(图表): 减小图例下方的留白,高度和字体匹配

This commit is contained in:
wisonic-s 2024-04-23 14:42:11 +08:00
parent a24aa33ea7
commit 2a939671f9

View File

@ -273,9 +273,7 @@ export function getLegend(chart: Chart) {
offsetY = 0 offsetY = 0
} else if (l.vPosition === 'bottom') { } else if (l.vPosition === 'bottom') {
if (chart.drill) { if (chart.drill) {
offsetY = -16 offsetY = -12
} else {
offsetY = -4
} }
} else { } else {
offsetY = 0 offsetY = 0
@ -292,9 +290,9 @@ export function getLegend(chart: Chart) {
offsetY = 0 offsetY = 0
} else if (l.vPosition === 'bottom') { } else if (l.vPosition === 'bottom') {
if (chart.drill) { if (chart.drill) {
offsetY = -22 offsetY = -18
} else { } else {
offsetY = -10 offsetY = -6
} }
} else { } else {
offsetY = 0 offsetY = 0
@ -309,6 +307,7 @@ export function getLegend(chart: Chart) {
marker: { marker: {
symbol: legendSymbol symbol: legendSymbol
}, },
itemHeight: l.fontSize + 4,
radio: false, radio: false,
pageNavigator: { pageNavigator: {
marker: { marker: {