I have some difficulties to use the Widget callback with Bokeh. With the help of a checkbox widget, I would like to show/hide the corresponding plots.
The difference with this question, is that I would like a plot for each glyph(and not all the glyphs on one same plot). For example, if I tick/untick "b" I would like to see a new plot of the glyph.
Edit: New version of my code
from bokeh.io import output_file, show
from bokeh.layouts import column, widgetbox, row
from bokeh.models import ColumnDataSource
from bokeh.plotting import figure
from bokeh.models.widgets import CheckboxGroup
from bokeh.models import CustomJS
import pandas as pd
import numpy as np
if __name__ == '__main__':
# Plot tools
TOOLS = 'box_select,box_zoom,reset'
# Data Source
df = pd.DataFrame(np.random.randn(10, 5), columns=['a', 'b', 'c', 'd', 'e'])
source = ColumnDataSource(df)
# Create a new glyph and share ranges
g = figure(plot_width=1300, plot_height=150, title='a', tools=TOOLS)
g.circle(source=source, x='a', y='a')
glyph_list = []
for glyph in range(0, len(source.column_names)):
glyph_list.append((figure(plot_width=1300, plot_height=150, x_range=g.x_range, title=source.column_names[glyph],
tools=TOOLS)))
glyph_list[glyph].circle(source=source, x='a', y=source.column_names[glyph])
# Select the glyphs to plot
initial_list = [0] * len(source.column_names)
## example of a change
initial_list[2] = 1
# Callback
code = """
????
"""
callback = CustomJS(args=dict(source=source), code=code) #????
# Add checkbox widget
checkbox_group = CheckboxGroup(labels=source.column_names,
callback=callback,
active=initial_list)
plot_list = []
for i in range(0, len(source.column_names)):
if checkbox_group.active[i] == 1:
plot_list.append(glyph_list[i])
checkbox_group.js_on_change('active', callback) # ???
layout = row(column(plot_list), widgetbox(checkbox_group))
show(layout)