fix: 修复多维度柱状图跳转未找到跳转目标问题
This commit is contained in:
parent
58dcc5dfca
commit
38cfc51bc2
@ -1109,7 +1109,8 @@ export default {
|
||||
jumpInfo = this.nowPanelJumpInfo[sourceInfo]
|
||||
}
|
||||
})
|
||||
} else {
|
||||
}
|
||||
if (!jumpInfo) {
|
||||
for (let i = param.dimensionList.length - 1; i >= 0; i--) {
|
||||
dimension = param.dimensionList[i]
|
||||
sourceInfo = param.viewId + '#' + dimension.id
|
||||
|
||||
@ -548,7 +548,8 @@ export default {
|
||||
name: this.pointParam.data.name,
|
||||
viewId: this.chart.id,
|
||||
dimensionList: this.pointParam.data.dimensionList,
|
||||
quotaList: quotaList
|
||||
quotaList: quotaList,
|
||||
names: this.pointParam.data.name.split('\n')
|
||||
}
|
||||
jumpParam.quotaList[0]['value'] = this.pointParam.data.value
|
||||
switch (trackAction) {
|
||||
|
||||
@ -403,7 +403,8 @@ export default {
|
||||
dimensionList: this.pointParam.data.dimensionList,
|
||||
quotaList: quotaList,
|
||||
category: this.pointParam.data.category,
|
||||
group: this.pointParam.data.group
|
||||
group: this.pointParam.data.group,
|
||||
names: this.pointParam.data.name.split('\n')
|
||||
}
|
||||
|
||||
if (this.chart.type === 'scatter' && this.chart.render === 'antv') {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user