@acorex/charts 20.3.48 → 20.4.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.
@@ -106,6 +106,8 @@ declare class AXGaugeChartComponent extends AXChartComponent implements OnDestro
106
106
  private _tooltipVisible;
107
107
  private _tooltipPosition;
108
108
  private _tooltipData;
109
+ private _tooltipRafId;
110
+ private _pendingTooltipCoords;
109
111
  protected tooltipVisible: _angular_core.Signal<boolean>;
110
112
  protected tooltipPosition: _angular_core.Signal<{
111
113
  x: number;
@@ -170,10 +172,6 @@ declare class AXGaugeChartComponent extends AXChartComponent implements OnDestro
170
172
  * Shows tooltip for the entire range when no thresholds are defined
171
173
  */
172
174
  private showSingleRangeTooltip;
173
- /**
174
- * Updates the tooltip position based on the mouse event
175
- * For gauge charts, we need simpler coordinate handling since D3 events are already in container coordinates
176
- */
177
175
  private updateTooltipPosition;
178
176
  /**
179
177
  * Hides the tooltip
@@ -121,6 +121,8 @@ declare class AXLineChartComponent extends AXChartComponent implements OnInit, A
121
121
  private _tooltipVisible;
122
122
  private _tooltipPosition;
123
123
  private _tooltipData;
124
+ private _tooltipRafId;
125
+ private _pendingTooltipCoords;
124
126
  private _initialized;
125
127
  private _rendered;
126
128
  private hiddenSeries;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/charts",
3
- "version": "20.3.48",
3
+ "version": "20.4.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=20.0.0",
6
6
  "@angular/core": ">=20.0.0",