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. <script src="../../googleAnalytics.js"></script>
  18. </head>
  19. <body>
  20. <p>Labels of edges can be aligned to edges in various ways.</p>
  21. <p>Text-alignment within node labels can be 'left' or 'center', other font alignments not implemented.</p>
  22. <p>Label alignment (placement of label &quot;box&quot;) for nodes (top, bottom, left, right, inside) is
  23. planned but not in vis yet.</p>
  24. <div id="mynetwork"></div>
  25. <script type="text/javascript">
  26. // create an array with nodes
  27. var nodes = [
  28. {id: 1, label: 'Node 1'},
  29. {id: 2, label: 'Node 2'},
  30. {id: 3, label: 'Node 3:\nLeft-Aligned', font: {'face': 'Monospace', align: 'left'}},
  31. {id: 4, label: 'Node 4'},
  32. {id: 5, label: 'Node 5\nLeft-Aligned box', shape: 'box',
  33. font: {'face': 'Monospace', align: 'left'}}
  34. ];
  35. // create an array with edges
  36. var edges = [
  37. {from: 1, to: 2, label: 'middle', font: {align: 'middle'}},
  38. {from: 1, to: 3, label: 'top', font: {align: 'top'}},
  39. {from: 2, to: 4, label: 'horizontal', font: {align: 'horizontal'}},
  40. {from: 2, to: 5, label: 'bottom', font: {align: 'bottom'}}
  41. ];
  42. // create a network
  43. var container = document.getElementById('mynetwork');
  44. var data = {
  45. nodes: nodes,
  46. edges: edges
  47. };
  48. var options = {};
  49. var network = new vis.Network(container, data, options);
  50. </script>
  51. </body>
  52. </html>