rapid-spreadjs 1.0.109 → 1.0.110
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 +4 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.cjs.min.js +1 -1
- package/dist/index.cjs.min.js.map +1 -1
- package/dist/index.esm.js +4 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -4700,11 +4700,12 @@ const EChartsUtilsAll = {
|
|
|
4700
4700
|
xDataXx.filter((x) => x[1] == 0).length == xDataXx.length) {
|
|
4701
4701
|
yValIsAllNull = true;
|
|
4702
4702
|
}
|
|
4703
|
-
if (!
|
|
4704
|
-
!
|
|
4705
|
-
!
|
|
4703
|
+
if (!yDataArr[0].some((x) => x != '' && x != '/' && x != null && x != undefined) &&
|
|
4704
|
+
!yDataArr[1].some((x) => x != '' && x != '/' && x != null && x != undefined) &&
|
|
4705
|
+
!yDataArr[2].some((x) => x != '' && x != '/' && x != null && x != undefined)) {
|
|
4706
4706
|
yValIsAllNull = true;
|
|
4707
4707
|
}
|
|
4708
|
+
console.log(yValIsAllNull);
|
|
4708
4709
|
let option = {
|
|
4709
4710
|
grid: {
|
|
4710
4711
|
// show: true,// 是否显示外边框线
|