echarts-封装组织dataset的工具类

2022/8/29 23:24:15

本文主要是介绍echarts-封装组织dataset的工具类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

首先   过滤 排序拿到 filtersource

funcation getDatasetSource(维度x,filtersource,){
const sourceLists: Recordable[] = [];
for(let entity of 维度x){
var sourceList: any = [0, 0, 0, 0, 0, 0];
sourceList.splice(0, 1, entity);
  for(let obj of filtersource){
    if (obj.FailedType == entity) {
          switch (obj.Datasource) {
                case '生产项目':
                  sourceList.splice(1, 1, obj.sumValue);
                  break;
                default:
                  console.log('Unknown filter');
                  break;
              }
           }
  }
          sourceLists.push(sourceList);
}
    
    return sourceLists;
}    

每个指标的图例不一样所以单独抽象出配置图例的代码

//设置图例数据

function getLegend(sourceList,filtersource) 
for(let obj of filtersource){
    if (obj.FailedType == entity) {//x轴维度
          switch (obj.Datasource) {//图例维度
                case '生产项目'://都要自己按指标要求写
                  sourceList.splice(1, 1, obj.sumValue);
                  break;
                default:
                  console.log('Unknown filter');
                  break;
              }
           }
  }
return sourceList;
}

工具类终结版

funcation getDatasetSource(维度x,filtersource){
const sourceLists: Recordable[] = [];
for(let entity of 维度x){
var sourceList: any = [0, 0, 0, 0, 0, 0];
    sourceList.splice(0, 1, entity);
    sourceLists.push(getLegend(sourceList,filtersource));
}
    return sourceLists;
}    

 



这篇关于echarts-封装组织dataset的工具类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程