You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VivaGraphJS is all about customization. You can easily change nodes and links appearance,
52
-
switch layouting algorithm and medium used to display elements of graphs. For example, to use CSS-based
53
-
rendering (instead of default SVG) the following code is used:
51
+
VivaGraphJS is all about customization. You can easily change nodes and links appearance, switch layouting algorithm and medium used to display elements of the graph. For example to use CSS-based rendering (instead of default SVG) the following code is required:
54
52
55
53
```javascript
56
54
var graph =Viva.Graph.graph();
@@ -65,11 +63,9 @@ var renderer = Viva.Graph.View.renderer(graph,
65
63
renderer.run();
66
64
```
67
65
68
-
`graphics` class is responsible for rendering nodes and links on the page. And `renderer` orchestrates the process.
69
-
To change default nodes appearance we should tell `graphics` how to represent them. Here is an example of
70
-
graph with six people whom I follow at github:
66
+
`graphics` class is responsible for rendering nodes and links on the page. And `renderer` orchestrates the process. To change nodes appearance tell `graphics` how to represent them. Here is an example of graph with six people whom I follow at github:
71
67
72
-
```javsacript
68
+
```javascript
73
69
var graph =Viva.Graph.graph();
74
70
75
71
// Construct the graph
@@ -98,7 +94,7 @@ graphics.node(function(node) {
98
94
.link(node.data.url); // node.data holds custom object passed to graph.addNode();
99
95
})
100
96
.placeNode(function(nodeUI, pos){
101
-
// Also 'shift' image to let links go to the center:
97
+
//Shift image to let links go to the center:
102
98
nodeUI.attr('x', pos.x-12).attr('y', pos.y-12);
103
99
});
104
100
@@ -109,6 +105,47 @@ var renderer = Viva.Graph.View.renderer(graph,
Graphs vary by their nature. Some graphs have hunders nodes and few edges (or links), others connect every node with each other. To get the best layout tuning is usually required.
116
+
Consider the following example:
117
+
118
+
```javascript
119
+
var graphGenerator =Viva.Graph.generator();
120
+
var graph =graphGenerator.grid(3, 3);
121
+
var renderer =Viva.Graph.View.renderer(graph);
122
+
renderer.run();
123
+
```
124
+
125
+
Graph generators are part of the library, which can produce classic graphs. `grid` generator create a grid with given number of columns and rows. But with default layout algorithm parameters the rendering is pretty ugly:
Tuning layout algorithm is definitely one of the hardest part of using this library. It has to be improved in future to simplify usage. Each of the force directed algorithm parameters are described in the source code.
0 commit comments