rapid-spreadjs 1.0.157 → 1.0.159
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 +11 -7
- 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 +11 -7
- 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/dist/utils/echarts-all.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -4758,7 +4758,7 @@ const EChartsUtilsAll = {
|
|
|
4758
4758
|
{
|
|
4759
4759
|
xAxis: xMin,
|
|
4760
4760
|
yAxis: 0,
|
|
4761
|
-
symbolOffset: [0,
|
|
4761
|
+
symbolOffset: [0, 55],
|
|
4762
4762
|
label: {
|
|
4763
4763
|
show: true,
|
|
4764
4764
|
color: '#000',
|
|
@@ -4772,7 +4772,7 @@ const EChartsUtilsAll = {
|
|
|
4772
4772
|
{
|
|
4773
4773
|
xAxis: xMax,
|
|
4774
4774
|
yAxis: 0,
|
|
4775
|
-
symbolOffset: [0,
|
|
4775
|
+
symbolOffset: [0, 55],
|
|
4776
4776
|
label: {
|
|
4777
4777
|
show: true,
|
|
4778
4778
|
color: '#000',
|
|
@@ -4804,7 +4804,7 @@ const EChartsUtilsAll = {
|
|
|
4804
4804
|
pointData.push({
|
|
4805
4805
|
xAxis: avg,
|
|
4806
4806
|
yAxis: 0,
|
|
4807
|
-
symbolOffset: [0,
|
|
4807
|
+
symbolOffset: [0, 55],
|
|
4808
4808
|
label: {
|
|
4809
4809
|
show: true,
|
|
4810
4810
|
color: '#000',
|
|
@@ -4870,8 +4870,8 @@ const EChartsUtilsAll = {
|
|
|
4870
4870
|
{
|
|
4871
4871
|
show: true,
|
|
4872
4872
|
text: xName,
|
|
4873
|
-
left: '
|
|
4874
|
-
bottom:
|
|
4873
|
+
left: '50px',
|
|
4874
|
+
bottom: '-5px',
|
|
4875
4875
|
textStyle: {
|
|
4876
4876
|
fontSize: 12,
|
|
4877
4877
|
fontWeight: 'normal',
|
|
@@ -21503,11 +21503,15 @@ const FormulaUtils = {
|
|
|
21503
21503
|
retData.allCellValsEw.forEach((item) => {
|
|
21504
21504
|
if (Array.isArray(item)) {
|
|
21505
21505
|
item.forEach((itemSon) => {
|
|
21506
|
-
|
|
21506
|
+
if (itemSon != '/' && !(itemSon._error != undefined && itemSon._error != null)) {
|
|
21507
|
+
retVals.push(itemSon);
|
|
21508
|
+
}
|
|
21507
21509
|
});
|
|
21508
21510
|
}
|
|
21509
21511
|
else {
|
|
21510
|
-
|
|
21512
|
+
if (item != '/' && !(item._error != undefined && item._error != null)) {
|
|
21513
|
+
retVals.push(item);
|
|
21514
|
+
}
|
|
21511
21515
|
}
|
|
21512
21516
|
});
|
|
21513
21517
|
let tmp_xy = retVals;
|