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.cjs.js CHANGED
@@ -5648,6 +5648,10 @@ const EChartsUtilsAll = {
5648
5648
  if (yData.some((item) => item != null && item != undefined && item != '/')) {
5649
5649
  yValIsAllNull = false;
5650
5650
  }
5651
+ console.log(111, config);
5652
+ console.log(222, xDataArr);
5653
+ console.log(333, yDataArr);
5654
+ console.log(444, yValIsAllNull);
5651
5655
  let option = {
5652
5656
  grid: {
5653
5657
  // show: true,//是否显示外边框线
@@ -19945,7 +19949,7 @@ const FormulaUtils = {
19945
19949
  }
19946
19950
  return '';
19947
19951
  })
19948
- .filter((val) => val !== ''); // 过滤空值
19952
+ .filter((val) => val !== '' && val != '/' && val != 'null' && val != null && val != undefined); // 过滤空值
19949
19953
  // 使用指定的分隔符连接结果[2,3,5](@ref)
19950
19954
  return resultValues.join(delimiter);
19951
19955
  }