@progress/kendo-charts 1.26.0-dev.202209260625 → 1.26.0-dev.202209291240

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.
@@ -176,6 +176,10 @@ var Bullet = (function (ChartElement) {
176
176
  };
177
177
  };
178
178
 
179
+ Bullet.prototype.overlapsBox = function overlapsBox (box) {
180
+ return this.box.overlaps(box);
181
+ };
182
+
179
183
  return Bullet;
180
184
  }(ChartElement));
181
185
 
@@ -168,6 +168,10 @@ class Bullet extends ChartElement {
168
168
  series: this.series
169
169
  };
170
170
  }
171
+
172
+ overlapsBox(box) {
173
+ return this.box.overlaps(box);
174
+ }
171
175
  }
172
176
 
173
177
  Bullet.prototype.tooltipAnchor = Bar.prototype.tooltipAnchor;