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.esm.js
CHANGED
|
@@ -4678,11 +4678,12 @@ const EChartsUtilsAll = {
|
|
|
4678
4678
|
xDataXx.filter((x) => x[1] == 0).length == xDataXx.length) {
|
|
4679
4679
|
yValIsAllNull = true;
|
|
4680
4680
|
}
|
|
4681
|
-
if (!
|
|
4682
|
-
!
|
|
4683
|
-
!
|
|
4681
|
+
if (!yDataArr[0].some((x) => x != '' && x != '/' && x != null && x != undefined) &&
|
|
4682
|
+
!yDataArr[1].some((x) => x != '' && x != '/' && x != null && x != undefined) &&
|
|
4683
|
+
!yDataArr[2].some((x) => x != '' && x != '/' && x != null && x != undefined)) {
|
|
4684
4684
|
yValIsAllNull = true;
|
|
4685
4685
|
}
|
|
4686
|
+
console.log(yValIsAllNull);
|
|
4686
4687
|
let option = {
|
|
4687
4688
|
grid: {
|
|
4688
4689
|
// show: true,// 是否显示外边框线
|