diff --git a/src/components/d3/plugins/D3Tooltip.tsx b/src/components/d3/plugins/D3Tooltip.tsx index 6539d0e..6b6bc7a 100644 --- a/src/components/d3/plugins/D3Tooltip.tsx +++ b/src/components/d3/plugins/D3Tooltip.tsx @@ -174,14 +174,7 @@ function _D3Tooltip>({ if (!tooltipRef.current || !zoneRect || fixed) return const rect = tooltipRef.current.getBoundingClientRect() - if (!mouseState.visible) { - setStyle((prev) => ({ - ...prev, - left: -rect.width, - top: -rect.height, - })) - return - } + if (!mouseState.visible) return const offsetX = -rect.width / 2 // По центру const offsetY = 15 // Чуть выше курсора