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

Wide axis labels should not be cropped

Open ASmirnov-HORIS opened this issue 2 years ago • 0 comments

Example:

from lets_plot import *
LetsPlot.setup_html()

n = 5
x = [i * 10**(-5) for i in range(n)]
y = [0] * len(x)

ggplot(dict(x=x, y=y), aes('x', 'y')) + \
    geom_point() + \
    scale_x_continuous(format='.7e')

Output:

ASmirnov-HORIS avatar Oct 20 '23 09:10 ASmirnov-HORIS