Describe the bug
I wanted to modifiy the weekDay cssClass property depending on http request/response. Just modify the div background color. The problem is when I charge the component, it doesn't paint the cells, but if I click on a day, for example, it does it. But i want to paint when charge the mwl-calendar-month-view component, even when i change the month, i wanted to re-paint it with the information get it from my http request with this new date (got it from the viewDate property).
Thank you.
Screenshots
I have this on my HTML.

My component.ts

And my service.ts

Versions
@angular/core: 6.1.4angular-calendar: 0.26.4Solved adding:
In my component.ts
Injecting the ChangeDetectorRef in my component constructor:

Calling the method detectChanges of this ChangeDetectorRef after my http response:

Most helpful comment
Solved adding:
In my
component.tsInjecting the
ChangeDetectorRefin my component constructor:Calling the method
detectChangesof thisChangeDetectorRefafter my http response: