Tree View

Tree view plugin is powered by a third party plugin. Please refer there documentation for further celebrations. https://angular2-tree.readme.io/docs

Importing

First import it to your app module or any submodule as you wish

import { TreeModule } from 'angular-tree-component';
@NgModule({
  imports: [TreeModule,...]
})
export class AppModule(){}

How to use

Basic Select with Search

<tree-root [nodes]="simpleNodes" [options]="options" class="tree-wrapper bold-node-text level1-document-icon-only m-b-20"></tree-root>

Last updated