Angular ng Bootstrap Rating 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 Rating in angular ng bootstrap. Rating component is used to make a component that will be shown by using stars. 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 rating component.Serve the app using ng serve. Example 1: In this example, we are making a basic example of rating. app.component.html <ngb-rating [(rate)]="gfg"></ngb-rating> <pre>GeeksforGeeks: <b>{{gfg}}</b></pre> 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.ts import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { gfg = 5; } Output: Example 2: In this example, we have set the rating to readonly. app.component.html <ngb-rating [(rate)]="gfg" [readonly]='true'></ngb-rating> <pre>GeeksforGeeks: <b>{{gfg}}</b></pre> 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.ts import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { gfg = 5; } Output: Reference: https://ng-bootstrap.github.io/#/components/rating/examples Comment More infoAdvertise with us Next Article Angular ng Bootstrap Rating Component T taran910 Follow Improve Article Tags : Web Technologies AngularJS Angular-ng-bootstrap Similar Reads 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 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 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 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 Tooltip 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 Tooltip in angular ng bootstrap. Tooltip is used to display informative tex 2 min read Like