Hi, I have a big file of time-series data. The problem is when I use Plotly graph object to visualize, it is very slow and worst when I try to zoom in (using rangeslider
) , which is important.
So, every time, I have to take a window of data from pandas dataframe and visualize it. This is not very convenient.
So, is there any way, that, for the first time it will show the first window of data and when I scroll, only then does the rendering of the second window happen (from memory or even from hard disk) and so onβ¦
I know, with Dash it is possible but is it possible in Graph Object?