diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-27 12:42:48 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-27 12:42:48 -0400 |
| commit | 210e8feae2fb4842bfb2de38666e6c41671fef3c (patch) | |
| tree | cbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/vis/examples/network/events/physicsEvents.html | |
| parent | e7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff) | |
removed lib
Diffstat (limited to 'www/lib/vis/examples/network/events/physicsEvents.html')
| -rw-r--r-- | www/lib/vis/examples/network/events/physicsEvents.html | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/www/lib/vis/examples/network/events/physicsEvents.html b/www/lib/vis/examples/network/events/physicsEvents.html deleted file mode 100644 index 418f403a..00000000 --- a/www/lib/vis/examples/network/events/physicsEvents.html +++ /dev/null @@ -1,73 +0,0 @@ -<!doctype html> -<html> -<head> - <title>Network | Basic usage</title> - - <script type="text/javascript" src="../../../dist/vis.js"></script> - <link href="../../../dist/vis-network.min.css" rel="stylesheet" type="text/css"/> - - <style type="text/css"> - #mynetwork { - width: 600px; - height: 400px; - border: 1px solid lightgray; - } - </style> -</head> -<body> - -<p> - Create a simple network with some nodes and edges. -</p> - -<div id="mynetwork"></div> -<pre id="eventSpan"></pre> -<script type="text/javascript"> - // create an array with nodes - var nodes = new vis.DataSet([ - {id: 1, label: 'Node 1'}, - {id: 2, label: 'Node 2'}, - {id: 3, label: 'Node 3'}, - {id: 4, label: 'Node 4'}, - {id: 5, label: 'Node 5'} - ]); - - // create an array with edges - var edges = new vis.DataSet([ - {from: 1, to: 3}, - {from: 1, to: 2}, - {from: 2, to: 4}, - {from: 2, to: 5} - ]); - - // create a network - var container = document.getElementById('mynetwork'); - var data = { - nodes: nodes, - edges: edges - }; - var options = {}; - var network = new vis.Network(container, data, options); - - network.on("startStabilizing", function (params) { - document.getElementById('eventSpan').innerHTML = '<h3>Starting Stabilization</h3>'; - console.log("started") - }); - network.on("stabilizationProgress", function (params) { - document.getElementById('eventSpan').innerHTML = '<h3>Stabilization progress</h3>' + JSON.stringify(params, null, 4); - console.log("progress:",params); - }); - network.on("stabilizationIterationsDone", function (params) { - document.getElementById('eventSpan').innerHTML = '<h3>Stabilization iterations complete</h3>'; - console.log("finished stabilization interations"); - }); - network.on("stabilized", function (params) { - document.getElementById('eventSpan').innerHTML = '<h3>Stabilized!</h3>' + JSON.stringify(params, null, 4); - console.log("stabilized!", params); - }); - -</script> - -<script src="../../googleAnalytics.js"></script> -</body> -</html> |
