Browse Source

added icons for new examples. minor tweaks (code styling)

css_transitions
Alex de Mulder 10 years ago
parent
commit
2591b8abae
7 changed files with 24 additions and 2 deletions
  1. BIN
      img/gallery/graph/18_fully_random_nodes_clustering.png
  2. BIN
      img/gallery/graph/19_scale_free_graph_clustering.png
  3. BIN
      img/gallery/graph/20_navigation.png
  4. BIN
      img/gallery/graph/21_data_manipulation.png
  5. BIN
      img/gallery/graph/22_les_miserables.png
  6. +23
    -0
      index.html
  7. +1
    -2
      src/graph/Graph.js

BIN
img/gallery/graph/18_fully_random_nodes_clustering.png View File

Before After
Width: 92  |  Height: 92  |  Size: 19 KiB

BIN
img/gallery/graph/19_scale_free_graph_clustering.png View File

Before After
Width: 92  |  Height: 92  |  Size: 19 KiB

BIN
img/gallery/graph/20_navigation.png View File

Before After
Width: 92  |  Height: 92  |  Size: 19 KiB

BIN
img/gallery/graph/21_data_manipulation.png View File

Before After
Width: 92  |  Height: 92  |  Size: 20 KiB

BIN
img/gallery/graph/22_les_miserables.png View File

Before After
Width: 92  |  Height: 92  |  Size: 25 KiB

+ 23
- 0
index.html View File

@ -268,6 +268,29 @@ The source code of the examples can be found in the
<div>network info</div>
</a>
</div>
<div class="thumb">
<a href="examples/graph/18_fully_random_nodes_clustering.html">
<img src="img/gallery/graph/18_fully_random_nodes_clustering.png">
<div>network info</div>
</a>
</div>
<div class="thumb">
<a href="examples/graph/19_scale_free_graph_clustering.html">
<img src="img/gallery/graph/19_scale_free_graph_clustering.png">
<div>network info</div>
</a>
</div>
<div class="thumb">
<a href="examples/graph/20_navigation.html">
<img src="img/gallery/graph/20_navigation.png">
<div>network info</div>
</a>
</div><div class="thumb">
<a href="examples/graph/22_les_miserables.html">
<img src="img/gallery/graph/22_les_miserables.png">
<div>network info</div>
</a>
</div>
<div class="thumb">
<a href="examples/graph/graphviz/graphviz_gallery.html">
<img src="img/gallery/graph/graphviz_gallery.png">

+ 1
- 2
src/graph/Graph.js View File

@ -40,11 +40,10 @@ function Graph (container, data, options) {
image: undefined,
widthMin: 16, // px
widthMax: 64, // px
fixed:false,
fixed: false,
fontColor: 'black',
fontSize: 14, // px
fontFace: 'verdana',
// fontFace: 'arial',
color: {
border: '#2B7CE9',
background: '#97C2FC',

Loading…
Cancel
Save