Вы можете пойти с -
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { CalendarEvent } from 'angular-calendar';
@Component({
selector: 'mwl-demo-component',
changeDetection: ChangeDetectionStrategy.OnPush,
templateUrl: 'template.html'
})
export class DemoComponent {
view: string = 'month';
viewDate: Date = new Date();
events = [
{
start: '2019-05-02',
title: 'A 3 day event',
color: {
primary: "#ad2121",
secondary: "#FAE3E3"
},
},
]
}
Надеюсь, ответ вам поможет!