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 CHANGED
@@ -4780,7 +4780,7 @@ const EChartsUtilsAll = {
4780
4780
  {
4781
4781
  xAxis: xMin,
4782
4782
  yAxis: 0,
4783
- symbolOffset: [0, 40],
4783
+ symbolOffset: [0, 55],
4784
4784
  label: {
4785
4785
  show: true,
4786
4786
  color: '#000',
@@ -4794,7 +4794,7 @@ const EChartsUtilsAll = {
4794
4794
  {
4795
4795
  xAxis: xMax,
4796
4796
  yAxis: 0,
4797
- symbolOffset: [0, 40],
4797
+ symbolOffset: [0, 55],
4798
4798
  label: {
4799
4799
  show: true,
4800
4800
  color: '#000',
@@ -4826,7 +4826,7 @@ const EChartsUtilsAll = {
4826
4826
  pointData.push({
4827
4827
  xAxis: avg,
4828
4828
  yAxis: 0,
4829
- symbolOffset: [0, 40],
4829
+ symbolOffset: [0, 55],
4830
4830
  label: {
4831
4831
  show: true,
4832
4832
  color: '#000',
@@ -4892,8 +4892,8 @@ const EChartsUtilsAll = {
4892
4892
  {
4893
4893
  show: true,
4894
4894
  text: xName,
4895
- left: 'center',
4896
- bottom: 0,
4895
+ left: '50px',
4896
+ bottom: '-5px',
4897
4897
  textStyle: {
4898
4898
  fontSize: 12,
4899
4899
  fontWeight: 'normal',
@@ -21525,11 +21525,15 @@ const FormulaUtils = {
21525
21525
  retData.allCellValsEw.forEach((item) => {
21526
21526
  if (Array.isArray(item)) {
21527
21527
  item.forEach((itemSon) => {
21528
- retVals.push(itemSon);
21528
+ if (itemSon != '/' && !(itemSon._error != undefined && itemSon._error != null)) {
21529
+ retVals.push(itemSon);
21530
+ }
21529
21531
  });
21530
21532
  }
21531
21533
  else {
21532
- retVals.push(item);
21534
+ if (item != '/' && !(item._error != undefined && item._error != null)) {
21535
+ retVals.push(item);
21536
+ }
21533
21537
  }
21534
21538
  });
21535
21539
  let tmp_xy = retVals;