New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@igor2017/tree-angular-component

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@igor2017/tree-angular-component

Declarative Charting Framework for Angular

latest
Source
npmnpm
Version
6.0.3
Version published
Maintainers
1
Created
Source

TreeAngularComponent

What is this component for?

Allows you to use tree-component in Angular apps. I consider this component the best tree for Angular at the moment.

:clapper: Usage

Installation:

npm i @igor2017/tree-angular-component

the "tree-component" package will be installed automatically

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { TreeModule } from 'tree-angular-component';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    TreeModule,
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
<tree [data]="data"
    (toggle)="toggle($event)"
    (change)="change($event)">
</tree>

Documentation and usage examples here: https://github.com/plantain-00/tree-component.

FAQs

Package last updated on 28 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts