summaryrefslogtreecommitdiff
path: root/www/lib/vis/examples/network/labels/multilineText.html
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
committerPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
commit210e8feae2fb4842bfb2de38666e6c41671fef3c (patch)
treecbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/vis/examples/network/labels/multilineText.html
parente7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff)
removed lib
Diffstat (limited to 'www/lib/vis/examples/network/labels/multilineText.html')
-rw-r--r--www/lib/vis/examples/network/labels/multilineText.html52
1 files changed, 0 insertions, 52 deletions
diff --git a/www/lib/vis/examples/network/labels/multilineText.html b/www/lib/vis/examples/network/labels/multilineText.html
deleted file mode 100644
index 99dc8eb2..00000000
--- a/www/lib/vis/examples/network/labels/multilineText.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <title>Network | Multiline text</title>
-
- <style type="text/css">
- #mynetwork {
- width: 600px;
- height: 600px;
- border: 1px solid lightgray;
- }
- </style>
-
- <script type="text/javascript" src="../../../dist/vis.js"></script>
- <link href="../../../dist/vis-network.min.css" rel="stylesheet" type="text/css" />
-
- <script type="text/javascript">
- function draw() {
- // create some nodes
- var nodes = [
- {id: 1, label: 'Node in\nthe center', shape: 'text', font:{strokeWidth:4}},
- {id: 2, label: 'Node\nwith\nmultiple\nlines', shape: 'circle'},
- {id: 3, label: 'This is a lot of text\nbut luckily we can spread\nover multiple lines', shape: 'database'},
- {id: 4, label: 'This is text\non multiple lines', shape: 'box'},
- {id: 5, label: 'Little text', shape: 'ellipse'}
- ];
-
- // create some edges
- var edges = [
- {from: 1, to: 2, color: 'red', width: 3, length: 200}, // individual length definition is possible
- {from: 1, to: 3, dashes:true, width: 1, length: 200},
- {from: 1, to: 4, width: 1, length: 200, label:'I\'m an edge!'},
- {from: 1, to: 5, arrows:'to', width: 3, length: 200, label:'arrows\nare cool'}
- ];
-
- // create a network
- var container = document.getElementById('mynetwork');
- var data = {
- nodes: nodes,
- edges: edges
- };
- var options = {};
- var network = new vis.Network(container, data, options);
- }
- </script>
- <script src="../../googleAnalytics.js"></script>
-</head>
-
-<body onload="draw()">
-<div id="mynetwork"></div>
-</body>
-</html>