如何发送用于apply.dashback的app.callback函数的参数?

问题描述 投票:0回答:1

我想创建多个图,这些图在update_graph_scatter函数中将不同的参数发送到'INPUT_PARAM'。我在哪里传递INPUT_PARAM?

app.layout = html.Div(
    [
        dcc.Graph(id='live-graph', animate=True),
        dcc.Interval(
            id='graph-update',
            interval=1000 * 60,
            n_intervals = 0,
        ),
    ]
)

@app.callback(Output('live-graph', 'figure'),
        [Input('graph-update', 'n_intervals')])
def update_graph_scatter(INPUT_PARAM):
python flask plotly plotly-dash
1个回答
0
投票

这由Input装饰器中定义的State值和app.callback值控制。在这种情况下,它将是n_intervals中的graph-update

© www.soinside.com 2019 - 2024. All rights reserved.