EDIT: Interactive legends are now built into the library as of Bokeh 0.12.5
, see https://bokeh.github.io/blog/2017/4/5/release-0-12-5/
This appears on track to be implemented at some point as interactive legends:
https://github.com/bokeh/bokeh/issues/3715
Currently (v0.12.1), there is an example that uses CustomJS on checkboxes to achieve this:
https://github.com/bokeh/bokeh/pull/4868
Relevant code:
import numpy as np
from bokeh.io import output_file, show
from bokeh.layouts import row
from bokeh.palettes import Viridis3
from bokeh.plotting import figure
from bokeh.models import CheckboxGroup, CustomJS
output_file("line_on_off.html", title="line_on_off.py example")
p = figure()
props = dict(line_width=4, line_alpha=0.7)
x = np.linspace(0, 4 * np.pi, 100)
l0 = p.line(x, np.sin(x), color=Viridis3[0], legend="Line 0", **props)
l1 = p.line(x, 4 * np.cos(x), color=Viridis3[1], legend="Line 1", **props)
l2 = p.line(x, np.tan(x), color=Viridis3[2], legend="Line 2", **props)
checkbox = CheckboxGroup(labels=["Line 0", "Line 1", "Line 2"],
active=[0, 1, 2], width=100)
checkbox.callback = CustomJS(args=dict(l0=l0, l1=l1, l2=l2, checkbox=checkbox),
lang="coffeescript", code="""
l0.visible = 0 in checkbox.active;
l1.visible = 1 in checkbox.active;
l2.visible = 2 in checkbox.active;
""")
layout = row(checkbox, p)
show(layout)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…