JetBrains/lets-plot

Display integer values without fractional part in tooltips

IKupriyanov-HORIS opened this issue · 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

Maybe related:
image

see: #1188 (comment)