Open In App

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 provide up-to-date feedback on the progress of the work.



Installation syntax:

ng add @ng-bootstrap/ng-bootstrap

Approach:



 

Example 1: In this example, we are making a basic example of progressbar.




<br/>
<p><ngb-progressbar type="success" [value]="14">
    14
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar type="info" [value]="33">
    33
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar type="warning" [value]="55">
    55
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar type="danger" [value]="45">
    45
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar type="primary" [value]="68">
    68
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar type="secondary" [value]="10">
    10
</ngb-progressbar></p>




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 { }

Output:

Example 2: In this example, we are making a progressbar with striped and animated set to true.




<br/>
  
<p><ngb-progressbar 
    type="success" 
    [value]="14" 
    [striped]="true" 
    [animated]="true" >14
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar 
    type="info"
    [value]="33" 
    [striped]="true" 
    [animated]="true" >33
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar 
    type="warning"
    [value]="55"
    [striped]="true" 
    [animated]="true" >55
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar 
    type="danger" 
    [value]="45"
    [striped]="true" 
    [animated]="true" >45
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar 
    type="primary" 
    [value]="68" 
    [striped]="true" 
    [animated]="true" >68
</ngb-progressbar></p>
<br/>
  
<p><ngb-progressbar 
    type="secondary"
    [value]="10" 
    [striped]="true" 
    [animated]="true" >10
</ngb-progressbar></p>




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 { }

Output:

Reference: https://ng-bootstrap.github.io/#/components/progressbar/examples


Article Tags :