diff --git a/examples/network/27_world_cup_network.html b/examples/network/27_world_cup_network.html index 43a466ca..da8c1a94 100644 --- a/examples/network/27_world_cup_network.html +++ b/examples/network/27_world_cup_network.html @@ -69,80 +69,81 @@ Hide nodes on drag:
+ + @@ -213,6 +214,4 @@ redrawAll() - - diff --git a/examples/network/30_importing_from_gephi.html b/examples/network/30_importing_from_gephi.html index b7c9e131..7d070dd7 100644 --- a/examples/network/30_importing_from_gephi.html +++ b/examples/network/30_importing_from_gephi.html @@ -1,107 +1,148 @@ - - Dynamic Data - Importing from Gephi (JSON) - - - - - + pre { + padding: 5px; + margin: 5px; + } + + .string { + color: green; + } + + .number { + color: darkorange; + } + + .boolean { + color: blue; + } + + .null { + color: magenta; + } + + .key { + color: red; + } + + +

Dynamic Data - Importing from Gephi (JSON)

+
- This example shows how to import a JSON file exported by Gephi. The two options available for the import are - available through the checkboxes. You can download the Gephi JSON exporter here: - https://marketplace.gephi.org/plugin/json-exporter/. - All of Gephi's attributes are also contained within the node elements. This means you can access all of this data through the DataSet. -
+ This example shows how to import a JSON file exported by Gephi. The two + options available for the import are + available through the checkboxes. You can download the Gephi JSON exporter + here: + https://marketplace.gephi.org/plugin/json-exporter/. + All of Gephi's attributes are also contained within the node elements. This + means you can access all of this data through the DataSet. +
+

+
+ +

-: Allow to move after import.
-: Parse the color instead of copy (adds borders, highlights etc.)
-

Node Content:

+

Node Content:

+

+
- - + + diff --git a/examples/network/31_localization.html b/examples/network/31_localization.html index f096955b..dfa5daf3 100644 --- a/examples/network/31_localization.html +++ b/examples/network/31_localization.html @@ -122,8 +122,10 @@ edges: edges }; var options = { - stabilize: false, - dataManipulation: true, + physics: { + stabilization: false + }, + manipulation: true, onAdd: function(data,callback) { var span = document.getElementById('operation'); var idInput = document.getElementById('node-id'); @@ -203,7 +205,8 @@ select.onchange(); } - + +

Editing the dataset (localized)