You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as per my requirement I have to display 5k+ records in the gantt chart, to load the 5k+ records it is taking 5 - 6 seconds which is not good and sometimes it is hanging and asking to kill or wait, can we have the pagination or any other approach to fix this performance issue
The text was updated successfully, but these errors were encountered:
@ajaybabum You might want to implement virtualization for rendering large datasets in the Gantt chart until Frappe Gantt internally adopts this technique.
+
Basically virtualization improves performance by rendering only the records visible within the viewport rather than all 5k+ records at once. As the user scrolls, new records are rendered dynamically while older ones outside the viewport are removed. This significantly reduces memory usage and prevents browser crashes caused by excessive DOM elements.
This approach should help resolve the issue where loading 5k+ records takes 5–6 seconds and sometimes causes the page to freeze or prompt a "Kill or Wait" message.
as per my requirement I have to display 5k+ records in the gantt chart, to load the 5k+ records it is taking 5 - 6 seconds which is not good and sometimes it is hanging and asking to kill or wait, can we have the pagination or any other approach to fix this performance issue
The text was updated successfully, but these errors were encountered: