1.2.0 • Published 4 years ago

angular2-tree-diagram v1.2.0

Weekly downloads
47
License
MIT
Repository
-
Last release
4 years ago

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
  • TreeComponent-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
  }
}
1.2.0

4 years ago

1.1.1

4 years ago

1.1.0

5 years ago

1.0.6

7 years ago

1.0.5

7 years ago