Currently, I have an empty graph shell that updates after a dropdown value is selected- but ideally, I would like to hide/not need this empty shell. Any help would be greatly appreciated!
Then populate your hidden div with a callback returning a list with a graph in it
@app.callback(Output('your_graph', 'children')
[Input(your layout component)
...]
[State( any state ?)])
def display_graph(your Inputs and State parameters)
return [a_dcc.Graph_in_a_list]