Angular ngx Bootstrap Progressbar Component Last Updated : 07 Mar, 2024 Comments Improve Suggest changes Like Article Like Report 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 Progressbar in angular ngx bootstrap. Progressbar is used to provide up-to-date feedback on the progress of the work. Installation syntax: npm install ngx-bootstrap --save Approach: First, install the angular ngx 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 progressbar component in module.tsIn app.component.html make a progressbar component.Serve the app using ng serve. Example: index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <base href="/" /> <meta name="viewport" content= "width=device-width, initial-scale=1" /> <link href= "https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" /> <link rel="icon" type="image/x-icon" href="favicon.ico" /> <link rel="preconnect" href="https://fonts.gstatic.com" /> <link href= "https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet" /> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> </head> <body class="mat-typography"> <app-root></app-root> </body> </html> app.component.html <div class="column"> <div class="col-sm-4"> <div class="mb-2"> <progressbar [max]="100" [value]="27" type="success" [striped]="true" [animate]="true">27 </progressbar> </div> </div> <br /> <div class="col-sm-4"> <div class="mb-2"> <progressbar [max]="140" [value]="49" type="warning" [animate]="true" [striped]="true">49% </progressbar> </div> </div> <br /> <div class="col-sm-4"> <div class="mb-2"> <progressbar [max]="140" [value]="40" type="danger" [striped]="true" [animate]="true"> 166 / 200 </progressbar> </div> </div> </div> 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 { ProgressbarModule } from 'ngx-bootstrap/progressbar'; import { AppComponent } from './app.component'; @NgModule({ bootstrap: [ AppComponent ], declarations: [ AppComponent ], imports: [ FormsModule, BrowserModule, BrowserAnimationsModule, ReactiveFormsModule, ProgressbarModule.forRoot() ] }) export class AppModule { } app.component.css .column{ margin: 30px; } app.component.ts import { Component, OnInit,LOCALE_ID } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { } Output: Comment More infoAdvertise with us Next Article Angular ngx Bootstrap Progressbar Component taran910 Follow Improve Article Tags : Web Technologies AngularJS Angular-ngx-bootstrap Similar Reads Angular ng Bootstrap Progressbar 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 Progressbar in angular ng bootstrap. The Progressbar component is used to pro 2 min read Angular ngx Bootstrap Popover 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 Popover in angular ngx bootstrap. Popover is used to make a button that will 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 Angular ngx Bootstrap Tabs 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 Tabs in angular ngx bootstrap. Installation syntax: npm install ngx-bootst 2 min read Angular ng Bootstrap Toast 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 Toast in angular ng bootstrap. The Toast component is used to make a compone 2 min read Angular ngx Bootstrap Rating 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 Rating in angular ngx bootstrap. Rating is used to make a component that w 2 min read Angular ngx bootstrap Pagination 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 Pagination in angular ngx bootstrap. Installation syntax: npm install ngx- 2 min read Angular ng Bootstrap Pagination 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 Pagination in angular ng bootstrap. Pagination is used to make a group of pag 2 min read 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 PrimeNG ProgressBar Component Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the progressBar component in Angular PrimeNG. We will also 3 min read Like