Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gview-possible

d-band6MIT1.1.4

viewer for directed acyclic graph

graph, dag, viewer, canvas, sugiyama

readme

gview

Fork from: egraph

NPM version NPM downloads

Install

$ npm install gview

Usage

Example

import GView from 'gview';

const data = {
  vertices: [{
    id: 1,
    name: 'node-1'
  }, {
    id: 2,
    name: 'node-2'
  }],
  edges: [{
    from: 1,
    to: 2
  }]
};

const viewer = new GView('root', data, {
  width: 800,
  height: 400,
  hited: function(list) {
    console.log(list);
  }
});

image

Develop

npm i dool -g

# Dev
$ dool server

# Build
$ dool build

Report a issue

License

Gview is available under the terms of the MIT License.