How to Render Large Tree Data Structures in Angular

Using virtual scrolling

Nasi Jofche
Better Programming
Published in
5 min readMar 24, 2020

--

Photo by niko photos on Unsplash

Displaying long lists of items in a client application requires strict attention, as it’s well-known that the application performance can degrade rapidly while trying to render lists with hundreds or even thousands of items.

This happens since the browser must render the entire page and all the data inside it…

--

--