@tetacom/svg-charts 1.2.28 → 1.2.29

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.
@@ -1308,6 +1308,7 @@ class DraggablePointDirective {
1308
1308
  deltaX,
1309
1309
  deltaY
1310
1310
  })) {
1311
+ this.startPosition = null;
1311
1312
  return;
1312
1313
  }
1313
1314
  if (this.transformCache) {
@@ -1426,7 +1427,7 @@ class LineSeriesComponent extends LinearSeriesBase {
1426
1427
  }
1427
1428
  }
1428
1429
  if (point.marker.maxX !== null && point.marker.maxX !== undefined) {
1429
- if (this.x.invert(this.x(this.start.x) + newPoint.deltaX) > point.marker.minX) {
1430
+ if (this.x.invert(this.x(this.start.x) + newPoint.deltaX) > point.marker.maxX) {
1430
1431
  return false;
1431
1432
  }
1432
1433
  }