Scheduler MonthView change background color for Sat and Sun

Hi,

Is there a way to change background color of sat and sun header in month view and week view. Something like below image.


Thank you.

Hi,

Yes, just apply background color for the required cells by CSS:

  .dhx_scheduler_week .dhx_scale_bar:nth-child(1),
  .dhx_scheduler_week .dhx_scale_bar:nth-child(7),
  .dhx_scheduler_month .dhx_scale_bar:nth-child(1),
  .dhx_scheduler_month .dhx_scale_bar:nth-child(7){ 
    background: lightgray;
  }

Demo: snippet.dhtmlx.com/16239bc78

It worked. Thank you Polina.