You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 5, 2025. It is now read-only.
novikov-alexander edited this page Apr 21, 2016
·
1 revision
Simply pass new data to plot with a same name.
For example:
functiongetData(){/*Some data generator*/}functionpolyline(){vardata=getData();InteractiveDataDisplay.asPlot('chart').polyline("p2",{x: data.x,y: data.y});setTimeout(polyline,25);}