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

Display integer values without fractional part in tooltips #1186

Open
IKupriyanov-HORIS opened this issue Sep 13, 2024 · 1 comment
Open
Milestone

Comments

@IKupriyanov-HORIS
Copy link
Collaborator

from lets_plot import *
LetsPlot.setup_html()

d = {
    'l': [3],
}
ggplot(d, aes(color='l')) + geom_point() + ggsize(300, 200)

image

from lets_plot import *
LetsPlot.setup_html()

d = {
    'l': [3_000_000],
}
ggplot(d, aes(color='l')) + geom_point() + ggsize(300, 200)

image

@alshan alshan added this to the New milestone Sep 13, 2024
@alshan
Copy link
Collaborator

alshan commented Sep 16, 2024

Maybe related:
image

see: #1188 (comment)

@alshan alshan modified the milestones: New, 2024Q4 Oct 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants