Add filename to time series

master
Dan Howe 5 years ago
parent 09024d0667
commit fcb4152db4

@ -107,6 +107,7 @@ def parse_contents(contents, filename):
json_data['timeseries'] = df.to_json(orient='table') json_data['timeseries'] = df.to_json(orient='table')
json_data['spectrum'] = dfs.to_json(orient='table') json_data['spectrum'] = dfs.to_json(orient='table')
json_data['statistics'] = stats.to_json(orient='table') json_data['statistics'] = stats.to_json(orient='table')
json_data['filename'] = filename
return json.dumps(json_data) return json.dumps(json_data)
@ -132,7 +133,8 @@ def read_json_data(json_data):
trace = go.Scatter(x=df.index, y=df[col], name=col, opacity=0.8) trace = go.Scatter(x=df.index, y=df[col], name=col, opacity=0.8)
ts.append(trace) ts.append(trace)
layout = {'title': 'basename', 'xaxis': {'rangeslider': {}}} filename = json.loads(json_data)['filename']
layout = {'title': filename, 'xaxis': {'rangeslider': {}}}
graph_timeseries = dcc.Graph(id='time-series', graph_timeseries = dcc.Graph(id='time-series',
figure={ figure={
'data': ts, 'data': ts,

Loading…
Cancel
Save