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

Broken plot_background on gggrid

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

Border around a plot is inconsistent.

Code snippet:

from lets_plot import *
LetsPlot.setup_html()

p = gggrid([
    ggplot() + geom_point() + coord_fixed(),
    gggrid([
        ggplot() + geom_point() + coord_fixed(),
        ggplot() + geom_point() + coord_fixed()
    ])
], ncol=1) + theme(plot_background=element_rect(size=3))

p

Result: image

IKupriyanov-HORIS avatar Jul 01 '24 14:07 IKupriyanov-HORIS