@progress/kendo-charts 2.5.3 → 2.5.4-dev.202410140828

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.
@@ -1454,7 +1454,11 @@ var Chart = (function (Class) {
1454
1454
  Chart.prototype._displayTooltip = function _displayTooltip (point) {
1455
1455
  var tooltipOptions = deepExtend({}, this.options.tooltip, point.options.tooltip);
1456
1456
  if (tooltipOptions.visible) {
1457
- this._tooltip.show(point);
1457
+ if (this._sharedTooltip() && point.box) {
1458
+ this._trackSharedTooltip(point.box.center(), {});
1459
+ } else {
1460
+ this._tooltip.show(point);
1461
+ }
1458
1462
  }
1459
1463
  };
1460
1464
 
@@ -1411,7 +1411,11 @@ class Chart extends Class {
1411
1411
  _displayTooltip(point) {
1412
1412
  const tooltipOptions = deepExtend({}, this.options.tooltip, point.options.tooltip);
1413
1413
  if (tooltipOptions.visible) {
1414
- this._tooltip.show(point);
1414
+ if (this._sharedTooltip() && point.box) {
1415
+ this._trackSharedTooltip(point.box.center(), {});
1416
+ } else {
1417
+ this._tooltip.show(point);
1418
+ }
1415
1419
  }
1416
1420
  }
1417
1421