Hi Narinder,
Thanks for contacting Syncfusion support.
We have checked the reported issue and this issue usually occurs when the Calendar Module is not imported properly in app.module.ts. Please refer the below code for importing modules in Angular application.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
// import the DatePickerModule for the DatePicker component
import { DatePickerModule, TimePickerModule, CalendarModule } from '@syncfusion/ej2-angular-calendars';
import { DropDownListModule } from '@syncfusion/ej2-angular-dropdowns';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule,CalendarModule, DatePickerModule,TimePickerModule,DropDownListModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
Please check if the modules are imported properly and go through the following links to get started with Calendar control.
Regards,
Deepa L.