An open API service indexing awesome lists of open source software.

https://github.com/artbelikov/angular2-tree-diagram

Angular Hierarchical UI module
https://github.com/artbelikov/angular2-tree-diagram

angular angular2 angular6 angular7 angular8 angular9 hierarchical hierarchical-data hierarchical-diagram hierarchy tree tree-structure typescript

Last synced: 10 months ago
JSON representation

Angular Hierarchical UI module

Awesome Lists containing this project

README

          

# Angular tree diagram

### About
This is Angular 2+ Hierarchical UI module.

### Preview

### Demo
On [gh-pages](https://artbelikov.github.io/angular2-tree-diagram/)

### 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
```

...
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
}
}
```