Right now, I have code to display a graph where one can give a range for both x and y values.
This is what my output currently is. Now, I want to include a button that has another input to redirect to a new page.
Is it possible to do that? As the documentation has only either multiple inputs or multiple outputs, not both.
This is my @callback code:
@callback(
Output('main', 'figure'),
Input('minNodes', 'value'),
Input('maxNodes', 'value'),
Input('minEdges', 'value'),
Input('maxEdges', 'value'),
)