carmanchang / d3-graph-editor

D3.js Graph Editor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

##D3.js GraphEditor

This is a D3.js Graph Editor which was extended from http://bl.ocks.org/rkirsling/5001347 and might be a bit more structured.

##Getting Started

var nodes = [
	{id: 0},
	{id: 1},
	{id: 2}
];

var links = [
	{source: nodes[0], target: nodes[1], left: false, right: true },
	{source: nodes[1], target: nodes[2], left: false, right: true }
];

var editor = new GraphEditor(
	"#graphEditor",
	{nodes : nodes, links : links, lastNodeID : 2}
);

About

D3.js Graph Editor

License:GNU General Public License v3.0


Languages

Language:JavaScript 95.4%Language:CSS 4.6%