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.

59 lines
1.3 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  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. <script src="../googleAnalytics.js"></script>
  16. </head>
  17. <body>
  18. <p>The font, size, and stroke of labels is fully customizable.</p>
  19. <div id="mynetwork"></div>
  20. <script type="text/javascript">
  21. // create an array with nodes
  22. var nodes = [
  23. {id: 1, label: 'Node 1', font: {strokeWidth: 3, strokeColor: 'white'}},
  24. {id: 2, label: 'Node 2'},
  25. {id: 3, label: 'Node 3'},
  26. {id: 4, label: 'Node 4'},
  27. {id: 5, label: 'Node 5'}
  28. ];
  29. // create an array with edges
  30. var edges = [
  31. {from: 1, to: 2, label: 'edgeLabel', font: {strokeWidth: 2, strokeColor : '#00ff00'}},
  32. {from: 1, to: 3, label: 'edgeLabel'},
  33. {from: 2, to: 4},
  34. {from: 2, to: 5}
  35. ];
  36. // create a network
  37. var container = document.getElementById('mynetwork');
  38. var data = {
  39. nodes: nodes,
  40. edges: edges
  41. };
  42. var options = {
  43. nodes : {
  44. shape: 'dot',
  45. size: 10
  46. }
  47. };
  48. var network = new vis.Network(container, data, options);
  49. </script>
  50. </body>
  51. </html>