Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] Changing tooltip config doesn't refresh the displayed tooltip #20706

Open
Justin-ZS opened this issue Jan 21, 2025 · 0 comments
Open

[Bug] Changing tooltip config doesn't refresh the displayed tooltip #20706

Justin-ZS opened this issue Jan 21, 2025 · 0 comments
Labels
bug en This issue is in English pending We are not sure about whether this is a bug/new feature.

Comments

@Justin-ZS
Copy link

Version

5.6.0

Link to Minimal Reproduction

demo

Steps to Reproduce

I want to show different tooltip when thectrl key is pressed or not.

document.addEventListener('keydown', (e) => {
    if (e.ctrlKey) myChart.setOption({ tooltip: { trigger: 'item' } })
})
document.addEventListener('keyup', (e) => {
    myChart.setOption({ tooltip: { trigger: 'axis' } })
})

When I press the key, the tooltip is not refreshed until I move the mouse.
After I move the mouse and the new tooltip gets shown once, releasing/pressing the key can toggles the tooltip as expected.

Current Behavior

When I press the key, the tooltip is not refreshed until I move the mouse.

Expected Behavior

When I press the key, the tooltip should be refreshed.

Environment

- OS:
- Browser:
- Framework:

Any additional comments?

No response

@Justin-ZS Justin-ZS added the bug label Jan 21, 2025
@echarts-bot echarts-bot bot added en This issue is in English pending We are not sure about whether this is a bug/new feature. labels Jan 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug en This issue is in English pending We are not sure about whether this is a bug/new feature.
Projects
None yet
Development

No branches or pull requests

1 participant