I am working on a Hotel Management application in which I am using Angular Gantt chart to manage rates of rooms. My hotel has large number of rooms and each room has different rate plans, so to manage all that in Angular Gantt chart is not possible. (loading large amount of data in a chart at once hangs the system.)
So, in order to manage that, I added lazy loading in it and loads only records for 10 days but it didn't solve my problem. So I again breaks the data and added a dropdown in Chart and displayed records only for one room. This time it worked fine as I loaded small amount of data in a chart but it is not what I am looking for.
So I want to know about the most efficient way to display maximum data in a chart or some other way to achieve the same.
Thanks in advance.