I am currently using the scheduler in timeline view to render around 150-200 sections for a 2 week period with anywhere between 3-8 events per section. When scrolling the scheduler is clunky due to the rendering/painting by the browser but have found adding these styles speed it up considerably.
.dhx_cal_data {
transform: translateZ(0);
will-change: transform;
backface-visibility: hidden;
}
I just wanted to check if this is something the dhtmlx team have experimented with and could there be any adverse effects?