rapid-spreadjs 1.0.80 → 1.0.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -5626,6 +5626,10 @@ const EChartsUtilsAll = {
5626
5626
  if (yData.some((item) => item != null && item != undefined && item != '/')) {
5627
5627
  yValIsAllNull = false;
5628
5628
  }
5629
+ console.log(111, config);
5630
+ console.log(222, xDataArr);
5631
+ console.log(333, yDataArr);
5632
+ console.log(444, yValIsAllNull);
5629
5633
  let option = {
5630
5634
  grid: {
5631
5635
  // show: true,//是否显示外边框线
@@ -19923,7 +19927,7 @@ const FormulaUtils = {
19923
19927
  }
19924
19928
  return '';
19925
19929
  })
19926
- .filter((val) => val !== ''); // 过滤空值
19930
+ .filter((val) => val !== '' && val != '/' && val != 'null' && val != null && val != undefined); // 过滤空值
19927
19931
  // 使用指定的分隔符连接结果[2,3,5](@ref)
19928
19932
  return resultValues.join(delimiter);
19929
19933
  }