vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.7 KiB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Network | Label alignment</title>
  5. <script type="text/javascript" src="../../../dist/vis.js"></script>
  6. <link href="../../../dist/vis-network.min.css" rel="stylesheet" type="text/css" />
  7. <style type="text/css">
  8. #mynetwork {
  9. width: 600px;
  10. height: 600px;
  11. border: 1px solid lightgray;
  12. }
  13. p {
  14. max-width:600px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <p>Labels of edges can be aligned to edges in various ways.</p>
  20. <p>Text-alignment within node labels can be 'left' or 'center', other font alignments not implemented.</p>
  21. <p>Label alignment (placement of label &quot;box&quot;) for nodes (top, bottom, left, right, inside) is
  22. planned but not in vis yet.</p>
  23. <div id="mynetwork"></div>
  24. <script type="text/javascript">
  25. // create an array with nodes
  26. var nodes = [
  27. {id: 1, label: 'Node 1'},
  28. {id: 2, label: 'Node 2'},
  29. {id: 3, label: 'Node 3:\nLeft-Aligned', font: {'face': 'Monospace', align: 'left'}},
  30. {id: 4, label: 'Node 4'},
  31. {id: 5, label: 'Node 5\nLeft-Aligned box', shape: 'box',
  32. font: {'face': 'Monospace', align: 'left'}}
  33. ];
  34. // create an array with edges
  35. var edges = [
  36. {from: 1, to: 2, label: 'middle', font: {align: 'middle'}},
  37. {from: 1, to: 3, label: 'top', font: {align: 'top'}},
  38. {from: 2, to: 4, label: 'horizontal', font: {align: 'horizontal'}},
  39. {from: 2, to: 5, label: 'bottom', font: {align: 'bottom'}}
  40. ];
  41. // create a network
  42. var container = document.getElementById('mynetwork');
  43. var data = {
  44. nodes: nodes,
  45. edges: edges
  46. };
  47. var options = {};
  48. var network = new vis.Network(container, data, options);
  49. </script>
  50. </body>
  51. </html>