cx 24.7.6 → 24.8.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/dist/charts.js CHANGED
@@ -5321,8 +5321,8 @@ var SnapPointFinder = /*#__PURE__*/ (function (_PointReducer) {
5321
5321
  };
5322
5322
  _proto.onInitAccumulator = function onInitAccumulator(acc, _ref) {
5323
5323
  var data = _ref.data;
5324
- acc.cursorX = data.cursorX;
5325
- acc.cursorY = data.cursorY;
5324
+ acc.cursorX = this.convertX(data.cursorX);
5325
+ acc.cursorY = this.convertY(data.cursorY);
5326
5326
  acc.dist = data.maxDistance > 0 ? Math.pow(data.maxDistance, 2) : Number.POSITIVE_INFINITY;
5327
5327
  acc.snapX = null;
5328
5328
  acc.snapY = null;