Hi,
I’ll try to do that. I have a dataframe, and in my dropdown I have the columns headers.
options = [col1, col2, col3…]
dcc.Dropdown (id=test, options = options),
dcc.Graph(id=testg)
@app.callback(
Output(“testg”, “figure”),
[Input(“test”, “value”),
def update_fig(value):
data
trace = go.Scatter(x=(df.time),
y= df [‘value’],
line=dict(color…
But didnt works, how to select the y in function of column, selected by dropdown?
Thx so much1