DHTMLX responsive scheduler on Angular 8

Can anyone provide a snippet code to make the scheduler responsive on Angular 8

thanks in advance.

Hi @kevsterrr

If you mean buttons in the header, it can be solved by using CSS media queries for specific screens. For example:

@media screen and (max-width: 600px) {
.dhx_cal_navline{height:100px!important}
.dhx_cal_date{margin-top:50px}
}

Use this link to check how it displays on mobile devices: https://snippet.dhtmlx.com/5/a816972a3

The same approach for angular 8.