@visactor/vchart 2.0.7-alpha.1 → 2.0.7-alpha.2

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/build/index.es.js CHANGED
@@ -58325,7 +58325,7 @@ const lookup = (data, opt) => {
58325
58325
  });
58326
58326
  };
58327
58327
 
58328
- const version = "2.0.7-alpha.1";
58328
+ const version = "2.0.7-alpha.2";
58329
58329
 
58330
58330
  const addVChartProperty = (data, op) => {
58331
58331
  const context = op.beforeCall();
@@ -72253,7 +72253,9 @@ class WaterfallSeries extends BarSeries {
72253
72253
  this._reStackTotal = () => {
72254
72254
  const stackData = this.getStackData();
72255
72255
  const stackValueField = this.getStackValueField();
72256
- stackTotal(stackData, stackValueField);
72256
+ if (stackData) {
72257
+ stackTotal(stackData, stackValueField);
72258
+ }
72257
72259
  };
72258
72260
  }
72259
72261
  getTotalData() {
package/build/index.js CHANGED
@@ -58331,7 +58331,7 @@
58331
58331
  });
58332
58332
  };
58333
58333
 
58334
- const version = "2.0.7-alpha.1";
58334
+ const version = "2.0.7-alpha.2";
58335
58335
 
58336
58336
  const addVChartProperty = (data, op) => {
58337
58337
  const context = op.beforeCall();
@@ -72259,7 +72259,9 @@
72259
72259
  this._reStackTotal = () => {
72260
72260
  const stackData = this.getStackData();
72261
72261
  const stackValueField = this.getStackValueField();
72262
- stackTotal(stackData, stackValueField);
72262
+ if (stackData) {
72263
+ stackTotal(stackData, stackValueField);
72264
+ }
72263
72265
  };
72264
72266
  }
72265
72267
  getTotalData() {