Please introduce some straightforward way to include line breaks (e.g. "\n" or "<br>") in labels of categorical axes (currently these are ignored):
factors = ["a very long label \n that needs a break",
"a very long label \\n that needs a break",
"a very long label <br> that needs a break",
]
x = [50, 40, 65,]
p = figure(y_range=factors)
p.circle(x, factors, size=15, fill_color="orange", line_color="green", line_width=3)
show(p)
Feature request (similar to #7317)
Please introduce some straightforward way to include line breaks (e.g. "\n" or "<br>") in labels of categorical axes (currently these are ignored):