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

Lack of support for multi-line axis labels

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

Code:

from lets_plot import *
LetsPlot.setup_html()

data = {
    'x': ['foo\nbar\nbaz'],
    'y': ['qwe\nasd\nzxc']
}
ggplot(data) + geom_point(aes(x='x', y='y'))

Output: image

IKupriyanov-HORIS avatar Nov 30 '23 18:11 IKupriyanov-HORIS