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.

63 lines
1.4 KiB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Network | Label stroke</title>
  5. <script type="text/javascript" src="../../dist/vis.js"></script>
  6. <link href="../../dist/vis.css" rel="stylesheet" type="text/css" />
  7. <style type="text/css">
  8. #mynetwork {
  9. width: 400px;
  10. height: 400px;
  11. border: 1px solid lightgray;
  12. background: #d1d1d1;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div id="mynetwork"></div>
  18. <script type="text/javascript">
  19. // create an array with nodes
  20. var nodes = [
  21. {id: 1, label: 'Node 1', fontStrokeWidth : 5, fontStrokeColor: 'white'},
  22. {id: 2, label: 'Node 2'},
  23. {id: 3, label: 'Node 3'},
  24. {id: 4, label: 'Node 4'},
  25. {id: 5, label: 'Node 5'}
  26. ];
  27. // create an array with edges
  28. var edges = [
  29. {from: 1, to: 2, label: 'edgeLabel', fontStrokeWidth : 2, fontStrokeColor : '#00ff00'},
  30. {from: 1, to: 3, label: 'edgeLabel'},
  31. {from: 2, to: 4},
  32. {from: 2, to: 5}
  33. ];
  34. // create a network
  35. var container = document.getElementById('mynetwork');
  36. var data = {
  37. nodes: nodes,
  38. edges: edges
  39. };
  40. var options = {
  41. nodes : {
  42. shape : 'dot',
  43. fontStrokeWidth : 1,
  44. fontStrokeColor : '#d1d1d1'
  45. },
  46. edges : {
  47. fontStrokeWidth : 1,
  48. fontStrokeColor : '#d1d1d1',
  49. fontFill : 'none'
  50. }
  51. };
  52. var network = new vis.Network(container, data, options);
  53. </script>
  54. </body>
  55. </html>