python - examples - Posición de la leyenda en una trama de Bokeh.
plotly python (1)
A partir de Bokeh 0.12.4
es posible colocar leyendas fuera del área central de la parcela. Aquí hay un breve ejemplo de la guía del usuario :
import numpy as np
from bokeh.models import Legend
from bokeh.plotting import figure, show, output_file
x = np.linspace(0, 4*np.pi, 100)
y = np.sin(x)
output_file("legend_labels.html")
p = figure(toolbar_location="above")
r0 = p.circle(x, y)
r1 = p.line(x, y)
r2 = p.line(x, 2*y, line_dash=[4, 4], line_color="orange", line_width=2)
r3 = p.square(x, 3*y, fill_color=None, line_color="green")
r4 = p.line(x, 3*y, line_color="green")
legend = Legend(items=[
("sin(x)", [r0, r1]),
("2*sin(x)", [r2]),
("3*sin(x)", [r3, r4])
], location=(0, -30))
p.add_layout(legend, ''right'')
show(p)
Para ajustar la posición, cambie dx
y dy
en location=(dx, dy)
.
¿Alguien sabe cómo llevar la leyenda en bokeh fuera de la gráfica? La única manipulación que pude hacer fue elegir una posición entre:
top_right, top_left, bottom_left or bottom_right
utilizando:
legend()[0].orientation = "bottom_left"
y cuando intento diferentes me sale el mensaje de error:
ValueError: invalid value for orientation: ''outside''; allowed values are top_right, top_left, bottom_left or bottom_right