graphjs
v0.0.4
Published
GraphJS
Downloads
30
Maintainers
Readme
GraphJS
GraphJS is a framework for easily representing and displaying graphs in JavaScript.
Objective
Very easy to use.
// Load the graph
let graph = new graphJS.Graph();
graph.loadJSON(json_graph);
// Display the graph
let chart = new graphJS.Chart( graph );
let layout = new graphJS.ForceDirected( graph );
chart.display();