!171 fix: 修复旧版本没有legend配置导致报settting color错误

Merge pull request !171 from h5coder/h5coder-fix
This commit is contained in:
奔跑的面条 2023-06-15 11:45:41 +00:00
parent c70d54c622
commit 5387a7ad90

View File

@ -391,8 +391,12 @@ const visualMap = computed(() => {
// legend colortype = scroll
watch(() => legend.value && legend.value.textStyle.color, (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,
deep: true,