impaktapps-design 0.2.58-alpha.113 → 0.2.58-alpha.114
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.
|
@@ -11423,6 +11423,9 @@ function DrawBarGraph({
|
|
|
11423
11423
|
tooltipData: [datum2.key, datum2.value, datum2.color]
|
|
11424
11424
|
});
|
|
11425
11425
|
};
|
|
11426
|
+
const handleMouseOut = (event) => {
|
|
11427
|
+
setHovInd(null);
|
|
11428
|
+
};
|
|
11426
11429
|
const {
|
|
11427
11430
|
TooltipInPortal,
|
|
11428
11431
|
containerRef
|
|
@@ -11513,9 +11516,7 @@ function DrawBarGraph({
|
|
|
11513
11516
|
height: bar.height,
|
|
11514
11517
|
fill: bar.color,
|
|
11515
11518
|
onMouseOver: (e3) => handleMouse(e3, bar),
|
|
11516
|
-
onMouseOut: (e3) =>
|
|
11517
|
-
setHovInd(null);
|
|
11518
|
-
},
|
|
11519
|
+
onMouseOut: (e3) => handleMouseOut(),
|
|
11519
11520
|
onClick: () => {
|
|
11520
11521
|
if (!events)
|
|
11521
11522
|
return;
|