共计 592 个字符,预计需要花费 2 分钟才能阅读完成。
initChartTree(){this.chartTree = this.$echarts.init(document.getElementById('chart-tree'))
let option = {} // option 外面的配置间接复制 echarts 树状图外面的即可
this.chartTree.setOption(option)
var temp = this.charrtTree
var container = document.getElementById('chart-tree')
this.chartTree.on('click',
function(params) {if (params.componentType === 'series') {if (!params.value) {var elesArr = Array.from(new Set(temp._chartsVIews[0]._data._graphicEls));
var height = 300;
var currentHeight = 10 * (elesArr.length - 1) || 10;
var newHeight = Math.max(currentHeight, height);
cotainer.style.height = newHeight + 'px';
temp.resize()}
}
}
},mounted() {this.initChartTree();
}
正文完
发表至: javascript
2021-06-07