Open In App

Angular PrimeNG Chip Basic

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. This article will show us how to use the Chips Basic in Angular PrimeNG.

The Chips component sets multiple values to enter for an input field. It is generally used for implementing the filter input on most e-commerce websites.



Syntax:

<p-chip 
    label="...." 
    [removable]="true">
</p-chip>

Angular PrimeNG Chip Basic properties:



Creating Angular Application & module installation:

Step 1: Create an Angular application using the following command.

ng new appname

Step 2: After creating your project folder i.e. appname, move to it using the following command.

cd appname

Step 3: Install PrimeNG in your given directory.

npm install primeng --save
npm install primeicons --save

Project Structure: It will look like the following:

 

ng serve --open

Example 1: Below is the example code that illustrates the use of Angular PrimeNG Chip Basic.




<h2 style="color: green">GeeksforGeeks</h2>
<h5>Angular PrimeNG Chips Basic</h5>
<div class="d-flex ai-center">
    <p-chip 
            label="HTML" 
            styleClass="mr-3">
    </p-chip>
    <p-chip 
            label="CSS" 
            styleClass="mr-3">
    </p-chip>
    <p-chip 
            label="JavaScript" 
            styleClass="mr-3">
    </p-chip>
    <p-chip 
            label="ReactJS" 
            styleClass="mr-3">
    </p-chip>
    <p-chip 
            label="AngularJS" 
            styleClass="mr-3">
    </p-chip>
    <p-chip 
            label="PrimeNG" 
            styleClass="mr-3">
    </p-chip>
</div>




import { Component } from "@angular/core";
  
@Component({
    selector: "app-root",
    templateUrl: "./app.component.html",
    styleUrls: ["./app.component.css"]
})
export class AppComponent { }




import { NgModule } from "@angular/core";
import { BrowserModule }
    from "@angular/platform-browser";
import { BrowserAnimationsModule }
    from "@angular/platform-browser/animations";
import { AppComponent } from "./app.component";
import { ButtonModule } from "primeng/button";
import { BadgeModule } from "primeng/badge";
import { ChipModule } from "primeng/chip";
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        ChipModule,
        ButtonModule,
        BadgeModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule { }

Output:

 

Example 2: Below is another example code that illustrates Angular PrimeNG Chip Basic using the [removable]=”true” property.




<h2 style="color: green">GeeksforGeeks</h2>
<h5>Angular PrimeNG Chips Basic</h5>
<div class="d-flex ai-center">
    <p-chip 
            label="HTML" 
            styleClass="mr-3"
            [removable]="true">
    </p-chip>
    <p-chip 
            label="CSS" 
            styleClass="mr-3"
            [removable]="true">
    </p-chip>
    <p-chip 
            label="JavaScript" 
            styleClass="mr-3"
            [removable]="true">
    </p-chip>
    <p-chip 
            label="ReactJS" 
            styleClass="mr-3"
            [removable]="true">
    </p-chip>
    <p-chip 
            label="AngularJS" 
            styleClass="mr-3"
            [removable]="true">
    </p-chip>
    <p-chip 
            label="PrimeNG"
            [removable]="true">
    </p-chip>
</div>




import { Component } from "@angular/core";
  
@Component({
    selector: "app-root",
    templateUrl: "./app.component.html",
    styleUrls: ["./app.component.css"]
})
export class AppComponent { }




import { NgModule } from "@angular/core";
import { BrowserModule }
    from "@angular/platform-browser";
import { BrowserAnimationsModule }
    from "@angular/platform-browser/animations";
import { AppComponent } from "./app.component";
import { ButtonModule } from "primeng/button";
import { BadgeModule } from "primeng/badge";
import { ChipModule } from "primeng/chip";
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        ChipModule,
        ButtonModule,
        BadgeModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule { }

Output:

 

Reference: https://primefaces.org/primeng/chip


Article Tags :