New to Kendo UI for Angular? Start a free 30-day trial
CalendarsModule
Required for adding all Calendars features in NgModule-based Angular applications.
The package exports:
CalendarModule
—The calendar module.MultiViewCalendarModule
—The multi-view calendar module.
typescript
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { CalendarsModule } from '@progress/kendo-angular-dateinputs';
@NgModule({
imports: [
BrowserModule,
CalendarsModule
]
})
export class AppModule { }