@visactor/vchart 1.7.0 → 1.7.1-alpha.0
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.js +3 -2
- package/build/index.min.js +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/cjs/chart/base-chart.js +2 -1
- package/cjs/chart/base-chart.js.map +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/esm/chart/base-chart.js +2 -1
- package/esm/chart/base-chart.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/package.json +4 -4
package/build/index.js
CHANGED
|
@@ -58630,7 +58630,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
58630
58630
|
};
|
|
58631
58631
|
registerVChartCore();
|
|
58632
58632
|
|
|
58633
|
-
const version = "1.7.0";
|
|
58633
|
+
const version = "1.7.1-alpha.0";
|
|
58634
58634
|
|
|
58635
58635
|
class ChartData {
|
|
58636
58636
|
get dataList() {
|
|
@@ -59302,7 +59302,8 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
|
|
|
59302
59302
|
});
|
|
59303
59303
|
}
|
|
59304
59304
|
_createSeries(seriesSpec) {
|
|
59305
|
-
seriesSpec.forEach((
|
|
59305
|
+
seriesSpec.forEach((_spec, index) => {
|
|
59306
|
+
const spec = Object.assign({}, _spec);
|
|
59306
59307
|
if (!spec.data) {
|
|
59307
59308
|
spec.data = this._chartData.getSeriesData(spec.dataId, spec.dataIndex);
|
|
59308
59309
|
}
|