Browser Crashing When Displaying Large CSV Interactive Line Plot

Hi @RBD10100,

The problem is that go.append_trace expects a trace object (e.g. go.Scatter(), go.Bar(), etc.), not a figure. You can get a tuple of the traces in a figure using fig.data.

Hope that helps,

-Jon