Building Dashboards with Dash and Plotly
Alex Scriven
Data Scientist
Let's do this in Dash!
value
of first dropdown (INPUT)options
of second dropdown (OUTPUT)options
change on second dropdown, and so on
The callbacks involved:
@app.callback( Output('minor_cat_dd', 'options'), Input('major_cat_dd', 'value'))
def update_dd(major_cat_dd): # Filter options (list of dicts) return minor_options
Set a default value
@app.callback( Output('minor_cat_dd', 'value'), Input('minor_cat_dd', 'options'))
def update_dd(minor_cat_options): # Pick a default value return chosen_value
May wish to update multiple elements
@app.callback(
Output('my_title', 'children'),
Output('minor_cat_dd', 'value'),
Input('minor_cat_dd', 'options')
)
def some_function(input):
# function body
return title_value, dropdown_value
Building Dashboards with Dash and Plotly