fix(chart): fix Boxplot chart bug (#1741)

* fix: 【Charts】update charts snapshots

* fix: 修复图表height为100%时的高度问题

* fix: 优化图表extend逻辑

* fix: 修复图表extend失效问题

* fix: 删除注释

* fix: 新增图表echartOption变量,以便用户获取echart配置

* fix: 修复playground百度地图案例错误问题

* fix: 修复图表option复杂变量失效问题

* fix: 修改高德百度地图案例注释

* fix: chart-core添加cloneDeep引入

* fix: 修改chart组件getFormatted函数判断逻辑

* fix: 更新chart-core包版本为3.17.1

* fix: 修复箱型图data为空数组时的报错问题

* fix: 添加图标属性逻辑的深拷贝

* fix: 删除注释文件
This commit is contained in:
Davont 2024-07-11 10:38:20 +08:00 committed by GitHub
parent ed9b1a693d
commit ff0ec5bcb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 4 deletions

View File

@ -14,9 +14,6 @@ function removeNullKeys(obj) {
delete obj[key]
} else {
obj[key] = removeNullKeys(obj[key])
if (typeof obj[key] === 'object' && Object.keys(obj[key]).length === 0) {
obj[key] = undefined
}
}
}
return obj

View File

@ -279,7 +279,7 @@ export default {
options.extend = {}
}
options.extend[setting] = this[setting]
options.extend[setting] = cloneDeep(this[setting])
!unwatch &&
this.$watch(
setting,