Description

A calendar component for Angular 4.0+ that can display events on a month, week or day view.

NPM

Install angular-calendar using npm

angular-calendar

npm install angular-calendar --save

Dependencies

No Dependencies for this module.

Includes

Include css file in angular.json file inside styles":[ ]

path

../node_modules/angular-calendar/scss/angular-calendar.scss

Calendar Module

Add CalendarModule, CalendarDateFormatter into your CalendarsModule class. calendar.module.ts would look like this


import {NgModule} from '@angular/core';
import { CalendarModule, CalendarDateFormatter } from 'angular-calendar';
import { CalendarsComponent } from "./calendar.component";

@NgModule({
imports: [CalendarModule.forRoot()],
declarations: [CalendarsComponent],
providers: [ ]
})
export class CalendarsModule {

}