Angular ng Bootstrap Datepicker Component Last Updated : 06 Jul, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will see how to use Datepicker in angular ng bootstrap. The Datepicker is used to make a component that will be shown by using a calendar. Installation syntax: ng add @ng-bootstrap/ng-bootstrap Approach: First, install the angular ng bootstrap using the above-mentioned command. Add the following script in index.html <link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"> Import ng bootstrap module in module.ts import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; imports: [ NgbModule ] In app.component.html, make a datepicker component.Serve the app using ng serve. Example: In this example, we are making a basic example of datepicker. app.component.html <ngb-datepicker id='gfg'></ngb-datepicker> app.module.ts import { NgModule } from '@angular/core'; // Importing forms module import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; @NgModule({ bootstrap: [ AppComponent ], declarations: [ AppComponent ], imports: [ FormsModule, BrowserModule, BrowserAnimationsModule, ReactiveFormsModule, NgbModule ] }) export class AppModule { } app.component.css #gfg{ margin:40px } Output: Reference: https://ng-bootstrap.github.io/#/components/datepicker/overview Comment More infoAdvertise with us Next Article Angular ng Bootstrap Datepicker Component T taran910 Follow Improve Article Tags : Web Technologies AngularJS Angular-ng-bootstrap Similar Reads Angular ng Bootstrap Timepicker Component Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will know how to use Timepicker in angular ng bootstrap. Installation syntax: ng add @ng-bootstr 2 min read Angular ngx Bootstrap Timepicker Component Angular ngx bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will know how to use Timepicker in angular ngx bootstrap. Installation syntax: npm install ngx- 2 min read Angular ng Bootstrap Dropdown Component Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article we will see how to use Dropdown in angular ng bootstrap. Dropdown is used to make a group of objects 2 min read Angular ngx bootstrap Dropdowns Component Angular ngx bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. In this article, we will see how to use Dropdowns in angular ngx bootstrap. Installation syntax: npm install ngx-bo 2 min read Angular ng Bootstrap Popover Component Angular ng bootstrap is a bootstrap framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites.In this article we will know how to use Popover in angular ng bootstrap. Popover is used to make a button that will b 2 min read Like