I would like my dashboard to create a Graph() upon a met condition (or collapse a plot if no data.)
This is relevant if e.g. a user has to upload their own data - so prior to this a user may not want a blank plot visible. I have followed Dash’s upload component example and the data populates a table, which only shows when data exists https://plot.ly/dash/dash-core-components/upload.
However, if I follow something similar for a plot it doesn’t work e.g. something along the lines of:
# example div:
html.Div(children=[html.H4('Please load a data file and select a column from dropdown menu in order to display visualisation below',`id='output-data-upload-graph')]),`
html.Div(dcc.Graph(id='dist_graph'), style={'display': 'none'})
@app.callback(Output('output-data-upload-graph', 'children'),
[Input('target_col_dropdown', 'value'),
Input('intermediate-value', 'children')])
def draw_target_col_dist(column, jsonified_data):
dff = pd.read_json(jsonified_data)
counts = dff[column].value_counts()
keys = counts.index.tolist()
values = counts.values.tolist()
data = [go.Bar(
x=keys,
y=values
)
]
return {'data': data}
Am I doing something wrong? I have noticed that my code works if I update a blank graph with data but only if the graph is already showing. If it isn’t , it doesn’t appear.