New to Kendo UI for AngularStart a free 30-day trial

CalendarsModule

The exported package module.

The package exports:

  • CalendarModule—The calendar module.
  • MultiViewCalendarModule—The multi-view calendar module.
ts
// Import the Calendars module
import { CalendarsModule } from '@progress/kendo-angular-dateinputs';

// The browser platform with a compiler
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { NgModule } from '@angular/core';

// Import the app component
import { AppComponent } from './app.component';

// Define the app module
@NgModule({
    declarations: [AppComponent], // declare app component
    imports:      [BrowserModule, CalendarsModule], // import the Calendars module
    bootstrap:    [AppComponent]
})
export class AppModule {}

// Compile and launch the module
platformBrowserDynamic().bootstrapModule(AppModule);
Not finding the help you need?
Contact Support