Skip to content

Commit

Permalink
fix tooltip delay
Browse files Browse the repository at this point in the history
  • Loading branch information
vmilan committed Sep 13, 2023
1 parent 1e1a649 commit 9aba9a1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/react-ui/src/widgets/PieWidgetUI/PieWidgetUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ function PieWidgetUI({
const tooltipOptions = useMemo(
() => ({
show: showTooltip,
showDelay: 1000,
transitionDuration: 0,
showDelay: 100,
transitionDuration: 0.4,
backgroundColor: theme.palette.black[90],
borderColor: 'transparent',
textStyle: { color: theme.palette.common.white },
confine: true,
formatter:
Expand Down

0 comments on commit 9aba9a1

Please sign in to comment.