anarchy16

Results 1 issues of anarchy16

I want to make a button that changes its text upon click and triggers the next callback (plot update) ```python @app.callback( [Output("interval-graph", "disabled"), Output("start-record-button", "buttonText")], [Input("start-record-button", "n_clicks")], [State("interval-graph", "disabled")], )...