-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Closed
Milestone
Description
The code below does not render the \n as a new line (Bokeh 0.12.13)
from bokeh.plotting import figure, output_file, show
from bokeh.models import Label
output_file("test.html")
fig = figure()
fig.line(x=range(10), y=range(10))
label = Label(x=2, y=8, text="New\nLine")
fig.add_layout(label)
show(fig)nocibambi, suji0131, TimE-CU, Karel-van-de-Plassche, unnamedplay-r and 19 more