I am currently in need for a way to create graph on the fly. But using I canvasJS, I need to plot graphs from the beginning. Which mean I need all dataPoints at once. The below is my eg.
data.csv at 9:00 am
Time,Value
9:00,10
data.csv at 9:05 am
Time, Value
9:05,20
data.csv at 9:10 am
Time,Value
9:10,30
and so on….
Currently I have to keep on saving each data point and plot it from starting. However, there should be a way to read this file and append it to the graph.
Would highly appreciate if you could reply on the same. I hope my requirement is clear enough.