🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Angular 2+ Hierarchical UI module to render a customizable tree diagram on the web app.Features:Drag and dropZoom and panConfigurable node width/heightAdd/remove nodesTree-like UIPure CSS relation linesNo dependencies

Plugins

Documentation

Angular tree diagram

About

This is Angular 2+ Hierarchical UI module.

Preview

Demo

On gh-pages

Features

  • Drag and drop
  • Zoom and pan
  • Configurable node width/height
  • Add/remove nodes
  • Tree-like UI
  • Pure CSS relation lines
  • No dependencies

Installation

npm i angular2-tree-diagram 

Usage

  • Import module in your project
  • Use tree-diagram directive
  • Pass array of nodes and config
  • See example.json for more details

Example

<tree-diagram [data]="data"></tree-diagram> ... data = {   json: [     {       "guid": "bc4c7a02-5379-4046-92be-12c67af4295a",       "displayName": "Elentrix",       "children": [         "85d412c2-ebc1-4d56-96c9-7da433ac9bb2",         "28aac445-83b1-464d-9695-a4157dab6eac"       ]     },     ...   ],   config: {     nodeWidth: 200,     nodeHeight: 100   } } 

You May Also Like