@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/es5/index.js +1 -1
- package/build/index.es.js +4 -2
- package/build/index.js +4 -2
- package/build/index.min.js +2 -2
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/core/index.d.ts +1 -1
- package/cjs/core/index.js +1 -1
- package/cjs/core/index.js.map +1 -1
- package/cjs/series/waterfall/waterfall.js +1 -1
- package/cjs/series/waterfall/waterfall.js.map +1 -1
- package/esm/core/index.d.ts +1 -1
- package/esm/core/index.js +1 -1
- package/esm/core/index.js.map +1 -1
- package/esm/series/waterfall/waterfall.js +1 -1
- package/esm/series/waterfall/waterfall.js.map +1 -1
- package/package.json +3 -3
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.
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
72262
|
+
if (stackData) {
|
|
72263
|
+
stackTotal(stackData, stackValueField);
|
|
72264
|
+
}
|
|
72263
72265
|
};
|
|
72264
72266
|
}
|
|
72265
72267
|
getTotalData() {
|