Do you want to request a feature or report a bug?
Feature request
What is the current behavior?
When using the AreaChart component, the tooltip line (rendered by Tooltip) appears either below the activeDot and chart area, obscuring it during hover if placed before the Area component, or overlapping the activeDot and chart area if placed after the Area component


Code
https://codesandbox.io/p/devbox/simple-line-chart-forked-87w27z?file=/src/App.tsx:86,11&workspaceId=ws_To17rLGMkDt2tp8VzZBPSC
What is the expected behavior?
There should be a way to position the tooltip line between the activeDot and the chart area.

Attempted Solutions
- Adjusting the order of components did not resolve the issue.
- Using z-index on the ChartTooltip container was ineffective, as SVG does not respect it.
- Attempted DOM manipulation to reorder SVG elements dynamically (feels possible, but too hacky).
Do you want to request a feature or report a bug?
Feature request
What is the current behavior?
When using the AreaChart component, the tooltip line (rendered by Tooltip) appears either below the activeDot and chart area, obscuring it during hover if placed before the Area component, or overlapping the activeDot and chart area if placed after the Area component
Code
https://codesandbox.io/p/devbox/simple-line-chart-forked-87w27z?file=/src/App.tsx:86,11&workspaceId=ws_To17rLGMkDt2tp8VzZBPSC
What is the expected behavior?
There should be a way to position the tooltip line between the activeDot and the chart area.
Attempted Solutions