Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion apps/webapp/app/components/primitives/charts/ChartBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,10 @@ export function ChartBarRenderer({
highlight.setHoveredBar(hoveredKey, index);
}
}}
onMouseLeave={highlight.reset}
// No per-Bar onMouseLeave: moving between bars would fire leave→reset
// (all bars snap bright) before the next bar's enter, causing a hover
// flicker. The chart-level onMouseLeave (handleMouseLeave) clears the
// highlight when the cursor exits the whole chart.
isAnimationActive={false}
/>
);
Expand Down