I have some json coming back and each chunk is around 200 rows. The format is something like this
{ "data": [
{"time":24, "col1":54, "col2":23}
{"time":56, "col1":65, "col2":22}
...
]}
Since the results are streamed to me a chunk at a time, it would be really nice to start graphing as I receive the data. Another option is the csv download as well which also gives us 200 rows in each chunk. Is there any way to setup java script so I can do the one ajax request and my code will be called for each chunk of data so I can add it to my chart while waiting for the next piece of data?
thanks, Dean