fix: 修复旧版本没有legend配置导致报settting color错误
This commit is contained in:
parent
2f43ddd59b
commit
e903489a52
@ -391,7 +391,11 @@ const visualMap = computed(() => {
|
|||||||
// 监听legend color颜色改变type = scroll的颜色
|
// 监听legend color颜色改变type = scroll的颜色
|
||||||
watch(() => legend.value && legend.value.textStyle.color, (newVal) => {
|
watch(() => legend.value && legend.value.textStyle.color, (newVal) => {
|
||||||
if (legend.value && newVal) {
|
if (legend.value && newVal) {
|
||||||
legend.value.pageTextStyle.color = newVal
|
if (!legend.value.pageTextStyle) {
|
||||||
|
legend.value.pageTextStyle = { color: newVal }
|
||||||
|
} else {
|
||||||
|
legend.value.pageTextStyle.color = newVal
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
immediate: true,
|
immediate: true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user