diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2016-10-28 13:31:36 -0700 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2016-10-28 13:31:36 -0700 |
| commit | 05e761abca3ff42dbba371af0560b82707dfe7c0 (patch) | |
| tree | 268cc06b931357a0ffad684961ff6d24eeec3b4b /www/lib/vis/examples/network/labels/labelAlignment.html | |
| parent | 55a9e628760dc31400457099e4aaabc767beed70 (diff) | |
updated vis
Diffstat (limited to 'www/lib/vis/examples/network/labels/labelAlignment.html')
| -rw-r--r-- | www/lib/vis/examples/network/labels/labelAlignment.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/www/lib/vis/examples/network/labels/labelAlignment.html b/www/lib/vis/examples/network/labels/labelAlignment.html new file mode 100644 index 00000000..2397e219 --- /dev/null +++ b/www/lib/vis/examples/network/labels/labelAlignment.html @@ -0,0 +1,61 @@ +<!doctype html> +<html> +<head> + <title>Network | Label alignment</title> + + <script type="text/javascript" src="../../../dist/vis.js"></script> + <link href="../../../dist/vis.css" rel="stylesheet" type="text/css" /> + + <style type="text/css"> + #mynetwork { + width: 600px; + height: 600px; + border: 1px solid lightgray; + } + p { + max-width:600px; + } + </style> + <script src="../../googleAnalytics.js"></script> +</head> + +<body> + +<p>Labels of edges can be aligned to edges in various ways.</p> +<p>Text-alignment within node labels can be 'left' or 'center', other font alignments not implemented.</p> +<p>Label alignment (placement of label "box") for nodes (top, bottom, left, right, inside) is +planned but not in vis yet.</p> + +<div id="mynetwork"></div> + +<script type="text/javascript"> + // create an array with nodes + var nodes = [ + {id: 1, label: 'Node 1'}, + {id: 2, label: 'Node 2'}, + {id: 3, label: 'Node 3:\nLeft-Aligned', font: {'face': 'Monospace', align: 'left'}}, + {id: 4, label: 'Node 4'}, + {id: 5, label: 'Node 5\nLeft-Aligned box', shape: 'box', + font: {'face': 'Monospace', align: 'left'}} + ]; + + // create an array with edges + var edges = [ + {from: 1, to: 2, label: 'middle', font: {align: 'middle'}}, + {from: 1, to: 3, label: 'top', font: {align: 'top'}}, + {from: 2, to: 4, label: 'horizontal', font: {align: 'horizontal'}}, + {from: 2, to: 5, label: 'bottom', font: {align: 'bottom'}} + ]; + + // 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> + +</body> +</html> |
