Open In App

Angular PrimeNG OrganizationChart 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. It provides a lot of templates, components, theme design, an extensive icon library, and much more. In this article, we will see the Angular PrimeNG OrganizationChart Component.

The OrganizationChart Component visualizes the data in hierarchical organizational data. The data is arranged in the tree format. The component provides a lot of properties, styling, events, templates, etc. which can be modified to create many variations.



Angular PrimeNG OrganizationChart Component: There are various components that are utilized to enhance the OrganizationChart Component, along with increasing user interactivity, which is described below:

 



Creating Angular application & Module Installation:

ng new geeks_angular
cd geeks_angular
npm install primeng --save
npm install primeicons --save

Project Structure: The project structure will look like the following:

 

ng serve --save

Example 1: Below is the example that illustrates the use of the Angular PrimeNG OrganizationChart Component.




<h1 style="color: green; 
           text-align:center;">
    GeeksforGeeks
</h1>
<h3>
    Angular PrimeNG OrganizationChart Component
</h3>
  
<p-organizationChart [value]="data1" 
                     selectionMode="single" 
                     [preserveSpace]="false">
</p-organizationChart>




import { Component, OnInit, ViewEncapsulation } 
    from '@angular/core';
import { TreeNode } from 'primeng/api';
import { MessageService } from 'primeng/api';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    providers: [MessageService],
})
export class AppComponent {
    data1: TreeNode[];
    selectedNode: TreeNode;
  
    constructor(private messageService: MessageService) { }
  
    ngOnInit() {
        this.data1 = [
            {
                label: 'Data Structures and Algorithms',
                expanded: true,
                children: [
                    {
                        label: 'Data Structures',
                        expanded: true,
                        children: [
                            {
                                label: 'Queue',
                            },
                            {
                                label: 'Red-Black Tree',
                            },
                        ],
                    },
                    {
                        label: 'Algorithms',
                        expanded: true,
                        children: [
                            {
                                label: 'Hashing',
                            },
                            {
                                label: 'Divide and Conquer',
                            },
                        ],
                    },
                ],
            },
        ];
    }
}




import { NgModule } from '@angular/core';
import { BrowserModule } 
    from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { BrowserAnimationsModule } 
    from '@angular/platform-browser/animations';
import { AppComponent } 
    from './app.component';
import { OrganizationChartModule } 
    from 'primeng/organizationchart';
import { ToastModule } from 'primeng/toast';
import { PanelModule } from 'primeng/panel';
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        OrganizationChartModule,
        ToastModule,
        PanelModule,
        FormsModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
  
export class AppModule { }

Output:

 

Example 2: In the following example, we have implemented the multiple selection mode as well as preserveSpace by setting it to true.




<h1 style="color: green; 
           text-align:center;">
  GeeksforGeeks
</h1>
<h3>
      Angular PrimeNG OrganizationChart Component
</h3>
  
<p-organizationChart [value]="data1"
                          selectionMode="multiple"
                          [preserveSpace]="true">
</p-organizationChart>




import { Component, OnInit, ViewEncapsulation } 
    from '@angular/core';
import { TreeNode } from 'primeng/api';
import { MessageService } from 'primeng/api';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    providers: [MessageService],
})
export class AppComponent {
    data1: TreeNode[];
    selectedNode: TreeNode;
  
    constructor(private messageService: MessageService) { }
  
    ngOnInit() {
        this.data1 = [
            {
                label: 'Data Structures and Algorithms',
                expanded: true,
                children: [
                    {
                        label: 'Data Structures',
                        expanded: true,
                        children: [
                            {
                                label: 'Queue',
                            },
                            {
                                label: 'Red-Black Tree',
                            },
                        ],
                    },
                    {
                        label: 'Algorithms',
                        expanded: true,
                        children: [
                            {
                                label: 'Hashing',
                            },
                            {
                                label: 'Divide and Conquer',
                            },
                        ],
                    },
                ],
            },
        ];
    }
}




import { NgModule } from '@angular/core';
import { BrowserModule } 
    from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { BrowserAnimationsModule } 
    from '@angular/platform-browser/animations';
import { AppComponent } 
    from './app.component';
import { OrganizationChartModule } 
    from 'primeng/organizationchart';
import { ToastModule } from 'primeng/toast';
import { PanelModule } from 'primeng/panel';
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        OrganizationChartModule,
        ToastModule,
        PanelModule,
        FormsModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
  
export class AppModule { }

Output:

 

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


Article Tags :