@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/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((spec, index) => {
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
  }