HigorSilvaRosa / ng-organization-chart

This is a simple Angular 2/4 component that you can use to render organization charts.
https://ng-organization-chart.firebaseapp.com/
16 stars 14 forks source link
angular angular2 angular4

Let's organize everything!

This is a simple Angular 2/4 component that you can use to render organization charts.

Demo

Check the demo here!

Features

Usage exemple

HTML

    <ng-organization-chart [data]="data" (onClickNode)="clickNode($event)" (onDragNode)="dragNode($event)"></ng-organization-chart>

Data

[
   {
      id: "Boss",
      children: [
        { id: "Person#1", children: [] },
        { id: "Person#2", children: [] },
        { id: "Person#3", children: [] },
      ]
   }
]

I'm still working on it.