- I am trying to plot live graphs onto a website using dash with python
- Using the latest version of Dash
- got to know the event was removed from the latest version
so now how do I approach this problem any help will be appreciated.
Traceback (most recent call last): File "C:/Users/rohit/PycharmProjects/flask-projects/pltexmple.py", line 28, in events=[Event('graph-update', 'interval')]) NameError: name 'Event' is not defined
import dash
from dash.dependencies import Output
import dash_core_components as dcc
import dash_html_components as html
import plotly
import random
import plotly.graph_objs as go
from collections import deque
X = deque(maxlen=20)
X.append(1)
Y = deque(maxlen=20)
Y.append(1)
app = dash.Dash(__name__)
app.layout = html.Div(
[
dcc.Graph(id='live-graph', animate=True),
dcc.Interval(
id='graph-update',
interval=1*1000
),
]
)
@app.callback(Output('live-graph', 'figure'),
[Input('graph-update', 'interval')])
def update_graph_scatter():
X.append(X[-1]+1)
Y.append(Y[-1]+Y[-1]*random.uniform(-0.1,0.1))
data = plotly.graph_objs.Scatter(
x=list(X),
y=list(Y),
name='Scatter',
mode= 'lines+markers'
)
return {'data': [data],'layout' : go.Layout(xaxis=dict(range=[min(X),max(X)]),
yaxis=dict(range=[min(Y),max(Y)]),)}
if __name__ == '__main__':
app.run_server(debug=True)
def update_graph_scatter(input_value):and changeintervalton_intervals