Skip to content

Commit a57bb73

Browse files
committed
Adding documentation...
1 parent 44cdd02 commit a57bb73

File tree

3 files changed

+47
-10
lines changed

3 files changed

+47
-10
lines changed

README.md

+47-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ It is designed to be extensible and to support different rendering engines and l
55
it supports rendering graphs using either SVG or CSS formats. Layout algorithms currently implemented are:
66

77
* [Force Directed](http://en.wikipedia.org/wiki/Force-based_algorithms_\(graph_drawing\)) - based on Barnes-Hut
8-
simulation and optimized for JavaScript language this algorithm gives `N * lg(N)` performance per iteration.
8+
simulation and optimized for JavaScript language this algorithm gives `N * N * lg(N) + V` performance per iteration.
99
* [ ![PDF download](https://github.com/anvaka/VivaGraphJS/raw/master/packages/Images/pdf-icon.gif) GEM](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.113.9565&rep=rep1&type=pdf) - Graph Embedder
1010
algorithm created by Arne Frick, Andreas Ludwig and Heiko Mehldau. Estimated compleixity of this algorithm
1111
is `O(|V|^3)` - though I must have made a mistake somewhere, because force directed algorithm almost
@@ -48,9 +48,7 @@ renderer.run();
4848

4949
Customization
5050
----------------------------------------------------
51-
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:
5452

5553
```javascript
5654
var graph = Viva.Graph.graph();
@@ -65,11 +63,9 @@ var renderer = Viva.Graph.View.renderer(graph,
6563
renderer.run();
6664
```
6765

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:
7167

72-
```javsacript
68+
```javascript
7369
var graph = Viva.Graph.graph();
7470

7571
// Construct the graph
@@ -98,7 +94,7 @@ graphics.node(function(node) {
9894
.link(node.data.url); // node.data holds custom object passed to graph.addNode();
9995
})
10096
.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:
10298
nodeUI.attr('x', pos.x - 12).attr('y', pos.y - 12);
10399
});
104100

@@ -109,6 +105,47 @@ var renderer = Viva.Graph.View.renderer(graph,
109105
renderer.run();
110106
```
111107

112-
And the output is:
108+
The result is:
113109

114110
![Custom nodes](https://github.com/anvaka/VivaGraphJS/raw/master/packages/Images/customNode.png)
111+
112+
113+
Tuning layout algorithm
114+
----------------------------------------------------
115+
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:
126+
127+
![Grid 3x3 bad](https://github.com/anvaka/VivaGraphJS/raw/master/packages/Images/gridBad.png)
128+
129+
Let's tweak original code:
130+
```javascript
131+
var graphGenerator = Viva.Graph.generator();
132+
var graph = graphGenerator.grid(3, 3);
133+
134+
var layout = Viva.Graph.Layout.forceDirected(graph, {
135+
springLength : 10,
136+
springCoeff : 0.0005,
137+
dragCoeff : 0.02,
138+
gravity : -1.2
139+
});
140+
141+
var renderer = Viva.Graph.View.renderer(graph, {
142+
layout : layout
143+
});
144+
renderer.run();
145+
```
146+
147+
Now result is much better:
148+
149+
![Grid 3x3](https://github.com/anvaka/VivaGraphJS/raw/master/packages/Images/gridGood.png)
150+
151+
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.

packages/Images/graphGood.png

8.69 KB
Loading

packages/Images/gridBad.png

14 KB
Loading

0 commit comments

Comments
 (0)