@acorex/charts 20.3.48 → 20.3.50
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/bar-chart/index.d.ts +2 -4
- package/chart-tooltip/index.d.ts +1 -0
- package/donut-chart/index.d.ts +9 -10
- package/fesm2022/acorex-charts-bar-chart.mjs +23 -13
- package/fesm2022/acorex-charts-bar-chart.mjs.map +1 -1
- package/fesm2022/acorex-charts-chart-tooltip.mjs +11 -2
- package/fesm2022/acorex-charts-chart-tooltip.mjs.map +1 -1
- package/fesm2022/acorex-charts-donut-chart.mjs +68 -92
- package/fesm2022/acorex-charts-donut-chart.mjs.map +1 -1
- package/fesm2022/acorex-charts-gauge-chart.mjs +23 -14
- package/fesm2022/acorex-charts-gauge-chart.mjs.map +1 -1
- package/fesm2022/acorex-charts-line-chart.mjs +23 -7
- package/fesm2022/acorex-charts-line-chart.mjs.map +1 -1
- package/gauge-chart/index.d.ts +2 -4
- package/line-chart/index.d.ts +2 -0
- package/package.json +1 -1
package/gauge-chart/index.d.ts
CHANGED
|
@@ -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
|
package/line-chart/index.d.ts
CHANGED
|
@@ -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;
|