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();

}

岁月峥嵘走过
34 声望2 粉丝