A simple yet practical graph visualization tool.
Please format your graph data according to the following specifications before you throw it into the tool:
{
"gid": Graph_ID,
"gname": Graph_Name,
"directed": true|false,
"typed": true|false,
"nodes": [{
"nid": Node_ID,
"type": Node_Type,
"name": Node_Name
}],
"edges": [{
"eid": Edge_ID,
"source": Source_Node_ID,
"target": Target_Node,
"type": Node_Type,
"name": Node_Name
}]
}
{
"mid": Merged_Graph_ID,
"clusters": [{
"cid": Cluster_ID,
"size": Cluster_Size,
"nodes": [{
"gid": Original_Graph_ID,
"nid": Original_Node_ID,
"size": Node_Size
}],
"links": [{
"lid": Link_ID,
"source": Source_Cluster_ID,
"target": Target_Cluster_ID,
"label": Link_Label
}]
}
See examples in /data.
Throw your json graph data into the html page in /release, your graph should be visualized like this:

