摘要:
1、数组排序 const arr = [0,1,2,3,4,5,6] //对数据进行排序--从大到小--根据某个属性const data=JSON.parse(JSON.stringify(arr)).sort(this.down(param)) //数据排序的方法 down (name) { re 阅读全文
摘要:
1、低谷值展示为有数据的最小值而不是0,echarts所有曲线没到时间点的曲线不展示(x轴不到时间点不显示); 第一项: 数据深拷贝后进行过滤剔除为0的数据,使用Math函数的min方法进行计算。 const arr=[10,12,11,13,14,0] //数据深拷贝 对数据进行过滤 解构并使用M 阅读全文