NeXTs / Clusterize.js

Tiny vanilla JS plugin to display large data sets easily

Home Page:https://clusterize.js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

If Clusterize is possible of handling this type of project?

bfang711 opened this issue · comments

The project I've been working on is to show plots of a very long time series. Since it is too long and the data is big, the customer wants to load in the data on fly and wrap the plots into different lines.
As one example,
24hr data => 24 pages (view screens) for one page per hr => 6 plots (in a vertical table) for one plot per 10mins.

since the plots are all the same size and I know how many plots I need in total ( 6x24 ), even though not all of them are in view screen.
At initial, only 1st hr of data being loaded and 1st screen (6 plots) being fully rendered, while the other screens/plots are blank.
As mouse scrolls down, the index changes, based on which the new data will be loaded in, (the old data is deleted ) and the new plots will be fully rendered, while the ones out of the view screen will become "blank".
I wonder if Clusterize or similar library/plug-in can help me accomplish this task?

Note Briefly, the only thing I am worrying about is that if the rendered items in the list/table can be programatically rerendered when mouse scrolls down.

If not, any comments on this will be appreciated.

thank you