@visactor/vchart 1.13.0 → 1.13.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
@@ -62492,7 +62492,7 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
62492
62492
  };
62493
62493
  registerVChartCore();
62494
62494
 
62495
- const version = "1.13.0";
62495
+ const version = "1.13.1-alpha.0";
62496
62496
 
62497
62497
  const addVChartProperty = (data, op) => {
62498
62498
  const context = op.beforeCall();
@@ -93610,12 +93610,13 @@ C0.3-1.4,0.3-1.4,0.3-1.4z;`;
93610
93610
  return statisticsData;
93611
93611
  }
93612
93612
  const fields = originalFields();
93613
- if (statisticsData[datumField] &&
93613
+ const realField = isArray$1(datumField) ? datumField[0] : datumField;
93614
+ if (statisticsData[realField] &&
93614
93615
  fields &&
93615
- fields[datumField] &&
93616
- fields[datumField].lockStatisticsByDomain &&
93616
+ fields[realField] &&
93617
+ fields[realField].lockStatisticsByDomain &&
93617
93618
  !isContinuous()) {
93618
- statisticsData[datumField].values = newDomain;
93619
+ statisticsData[realField].values = newDomain;
93619
93620
  }
93620
93621
  return statisticsData;
93621
93622
  };