lets-plot icon indicating copy to clipboard operation
lets-plot copied to clipboard

Display integer values without fractional part in tooltips

Open IKupriyanov-HORIS opened this issue 1 year ago • 1 comments

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

IKupriyanov-HORIS avatar Sep 13 '24 11:09 IKupriyanov-HORIS

Maybe related: image

see: https://github.com/JetBrains/lets-plot/issues/1188#issuecomment-2353701572

alshan avatar Sep 16 '24 19:09 alshan