Hello everyone,
I’m creating a dashboard that has numerous progress bars on them using the dbc.progress dash bootstrap components.
I would like to know if it is possible to be able to click on this progress bar component, which gets redirected to another page using the @app.callbacks. If not is there a way to do this with Javascript function.
dbc.Col(html.Div(dbc.Progress(“50%”, color=“warning”, value=50))),
dbc.Col(html.Div(dbc.Progress([
dbc.Progress(id="progressBar", value=20, color='succes', bar=True),
dbc.Progress(value=20, color='warning', bar=True),
dbc.Progress(value=20, color='danger', bar=True),
], multi=True))),
2 posts - 2 participants





