Skip to content

Instantly share code, notes, and snippets.

@prrao87
Last active September 23, 2020 19:49
Show Gist options
  • Save prrao87/d93bee70cd952f82966e7d0ac6000df5 to your computer and use it in GitHub Desktop.
Save prrao87/d93bee70cd952f82966e7d0ac6000df5 to your computer and use it in GitHub Desktop.
# ========== Callbacks ================
@app.callback(Output('line-chart-1', 'figure'),
[Input('dropdown-1', 'value')])
def update_graph(selected_dropdown_value):
dff = df[df['Date'] == selected_dropdown_value]
return {
'data': [{
'x': dff.Date,
'y': dff.QuoteCount,
'line': {
'width': 3,
}
}],
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment