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.

256 lines
14 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head><script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-61231638-1', 'auto');ga('send', 'pageview');</script>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Network Examples</title>
  8. <link rel="icon" HREF="favicon.ico">
  9. <!-- Bootstrap -->
  10. <link href="./css/bootstrap.css" rel="stylesheet">
  11. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  12. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  13. <!--[if lt IE 9]>
  14. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  15. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  16. <![endif]-->
  17. <link href="./css/prettify.css" rel="stylesheet" type="text/css" />
  18. <script type="text/javascript" src="./js/prettify/prettify.js"></script>
  19. <script src="./dist/vis.js"></script>
  20. <link href="./dist/vis.css" rel="stylesheet" type="text/css" />
  21. <link href="./css/examples.css" rel="stylesheet" type="text/css" />
  22. <style>
  23. #networkContainer {
  24. margin:0px;
  25. padding:0px;
  26. position:relative;
  27. height: 3083px;
  28. width: 100%;
  29. z-index:0;
  30. }
  31. #contentContainer {
  32. margin:0px;
  33. padding:0px;
  34. position:relative;
  35. margin-top:-3083px;
  36. width: 100%;
  37. z-index:2;
  38. }
  39. </style>
  40. <script>
  41. var network;
  42. function loadVis() {
  43. var exampleContainer = document.getElementById('contentContainer');
  44. var links = exampleContainer.getElementsByTagName('a');
  45. var nodesArray = [];
  46. var edgesArray = [];
  47. var idCounter = 0;
  48. var firstLink = undefined;
  49. for (var i = 0; i < links.length; i++) {
  50. var link = links[i];
  51. if (link.className === 'exampleLink') {
  52. var linkRect = link.getBoundingClientRect();
  53. var linkWidth = linkRect.right - linkRect.left;
  54. if (firstLink === undefined) {
  55. firstLink = link;
  56. }
  57. nodesArray.push({id:idCounter,
  58. x:link.offsetLeft + linkWidth,
  59. y:link.offsetTop,
  60. color:{
  61. background:'rgba(0,0,0,0.0)',
  62. border:'rgba(70,158,255,0)'
  63. },
  64. shape:'dot',
  65. size:10,
  66. fixed:true
  67. });
  68. nodesArray.push({id:idCounter + "image",
  69. // label:link.innerHTML,
  70. x:link.offsetLeft + 400 + 100 + (idCounter % 3) * 150,
  71. y:link.offsetTop,
  72. color:{
  73. border:'rgba(70,158,255,1)'
  74. },
  75. shadow:{
  76. size:2,
  77. x:0,
  78. y:0
  79. },
  80. shape:'image',
  81. image:'./images/exampleScreenshots/network/'+(idCounter+1)+'.png',
  82. size:60
  83. });
  84. edgesArray.push({from: idCounter, to: idCounter+"image"});
  85. idCounter += 1;
  86. }
  87. }
  88. var nodes = new vis.DataSet(nodesArray);
  89. var edges = new vis.DataSet(edgesArray);
  90. var networkContainer = document.getElementById('networkContainer');
  91. var data = {
  92. nodes: nodes,
  93. edges: edges
  94. };
  95. var options = {
  96. edges:{
  97. color:{inherit:'both'},
  98. smooth:{enabled:false,type:'continuous'}
  99. },
  100. physics: false,
  101. interaction:{
  102. zoomView:false,
  103. dragView: false
  104. }
  105. };
  106. network = new vis.Network(networkContainer, data, options);
  107. // get the offset
  108. var firstLinkPos = {x:firstLink.offsetLeft, y:firstLink.offsetTop};
  109. var firstLinkRect = firstLink.getBoundingClientRect();
  110. var firstLinkWidth = firstLinkRect.right - firstLinkRect.left;
  111. var firstLinkHeight = firstLinkRect.bottom - firstLinkRect.top;
  112. var rect = networkContainer.getBoundingClientRect();
  113. var width = rect.right - rect.left;
  114. var height = rect.bottom - rect.top;
  115. var ydiff = exampleContainer.offsetTop - networkContainer.offsetTop;
  116. network.moveTo({
  117. scale: 1,
  118. position: network.getPositions([0])[0],
  119. offset: {
  120. x: -0.5 * width + firstLinkPos.x + firstLinkWidth,
  121. y: -0.5 * height + firstLinkPos.y + ydiff + 0.5 * firstLinkHeight
  122. },
  123. animation: false
  124. });
  125. }
  126. </script>
  127. </head>
  128. <body onload="loadVis();">
  129. <div class="navbar-wrapper">
  130. <div class="container">
  131. <nav class="navbar navbar-inverse navbar-static-top" role="navigation">
  132. <div class="container">
  133. <div class="navbar-header">
  134. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
  135. <span class="sr-only">Toggle navigation</span>
  136. <span class="icon-bar"></span>
  137. <span class="icon-bar"></span>
  138. <span class="icon-bar"></span>
  139. </button>
  140. <a class="navbar-brand hidden-sm" href="./index.html">vis.js</a>
  141. </div>
  142. <div id="navbar" class="navbar-collapse collapse">
  143. <ul class="nav navbar-nav">
  144. <li class="active"><a href="./index.html#modules">Modules</a></li>
  145. <li><a href="./docs/index.html" target="_blank">Documentation <img class="icon" src="./images/external-link-icons/external-link-icon-white.png"></a></li>
  146. <li><a href="./blog.html">Blog</a></li>
  147. <li><a href="./index.html#download_install">Download</a></li>
  148. <li><a href="./showcase/index.html">Showcase</a></li>
  149. <li><a href="./index.html#contribute">Contribute</a></li>
  150. <li><a href="./featureRequests.html">Feature requests</a></li>
  151. <li><a href="./index.html#licenses">License</a></li>
  152. </ul>
  153. </div>
  154. </div>
  155. </nav>
  156. </div>
  157. </div>
  158. <div class="contentWrapper">
  159. <div id="networkContainer"></div>
  160. <div id="contentContainer">
  161. <h1>Network Examples</h1>
  162. This page contains examples which show how to use Network. For the documentation, please click the button below: <br><br>
  163. <a class="btn btn-primary" href="./docs/network" role="button">View docs »</a>
  164. <h3>basic usage</h3>
  165. <a class='exampleLink' href="examples/network/basic_usage.html">basic usage</a><br />
  166. <h3>node styles</h3>
  167. <a class='exampleLink' href="examples/network/nodeStyles/colors.html">colors</a><br />
  168. <a class='exampleLink' href="examples/network/nodeStyles/groups.html">groups</a><br />
  169. <a class='exampleLink' href="examples/network/nodeStyles/customGroups.html">custom groups</a><br />
  170. <a class='exampleLink' href="examples/network/nodeStyles/HTML_in_Nodes.html">HTML in nodes</a><br />
  171. <a class='exampleLink' href="examples/network/nodeStyles/icons.html">icons (Fontawesome and Ionicons)</a><br />
  172. <a class='exampleLink' href="examples/network/nodeStyles/images.html">images</a><br />
  173. <a class='exampleLink' href="examples/network/nodeStyles/circular_images.html">circular images</a><br />
  174. <a class='exampleLink' href="examples/network/nodeStyles/shadows.html">node shadows</a><br />
  175. <a class='exampleLink' href="examples/network/nodeStyles/shapes.html">node shapes</a><br />
  176. <h3>edge styles</h3>
  177. <a class='exampleLink' href="examples/network/edgeStyles/arrows.html">arrows (also combined with dashes)</a><br />
  178. <a class='exampleLink' href="examples/network/edgeStyles/colors.html">different colors</a><br />
  179. <a class='exampleLink' href="examples/network/edgeStyles/dashes.html">dashes</a><br />
  180. <a class='exampleLink' href="examples/network/edgeStyles/smooth.html">smooth curves</a><br />
  181. <a class='exampleLink' href="examples/network/edgeStyles/smoothWorldCup.html">smooth curves in action</a><br />
  182. <h3>labels</h3>
  183. <a class='exampleLink' href="examples/network/labels/label_alignment.html">label alignment (for edges only)</a><br />
  184. <a class='exampleLink' href="examples/network/labels/label_background.html">label background</a><br />
  185. <a class='exampleLink' href="examples/network/labels/label_color_and_size.html">colors and sizes</a><br />
  186. <a class='exampleLink' href="examples/network/labels/label_stroke.html">label stroke</a><br />
  187. <a class='exampleLink' href="examples/network/labels/multiline_text.html">multiline text</a><br />
  188. <h3>layout</h3>
  189. <a class='exampleLink' href="examples/network/layout/hierarchical_layout.html">hierarchical layout</a><br />
  190. <a class='exampleLink' href="examples/network/layout/hierarchical_layout_methods.html">hierarchical layout - different methods</a><br />
  191. <a class='exampleLink' href="examples/network/layout/hierarchical_layout_userdefined.html">hierarchical layout - user defined</a><br />
  192. <a class='exampleLink' href="examples/network/layout/randomSeed.html">set the random seed so every network will be the same</a><br />
  193. <h3>events</h3>
  194. <a class='exampleLink' href="examples/network/events/interactionEvents.html">interaction events, click, rightclick, drag etc.</a><br />
  195. <a class='exampleLink' href="examples/network/events/physicsEvents.html">physics events, stabilization etc.</a><br />
  196. <a class='exampleLink' href="examples/network/events/renderEvents.html">rendering events, use to draw custom items on the canvas.</a><br />
  197. <h3>dynamic data</h3>
  198. <a class='exampleLink' href="examples/network/data/datasets.html">dataset for dynamic data</a><br />
  199. <a class='exampleLink' href="examples/network/data/dynamic_data.html">dynamic data, playground</a><br />
  200. <a class='exampleLink' href="examples/network/data/importing_from_gephi.html">importing data from gephi</a><br />
  201. <a class='exampleLink' href="examples/network/data/scaling_custom.html">scaling the nodes with the value.</a><br />
  202. <a class='exampleLink' href="examples/network/data/scaling_nodes_edges.html">scaling the nodes and edges with the value.</a><br />
  203. <a class='exampleLink' href="examples/network/data/scaling_nodes_edges_labels.html">scaling the nodes, edges and labels with the value.</a><br />
  204. <h3>physics</h3>
  205. <a class='exampleLink' href="examples/network/physics/physicsConfiguration.html">physics configuration</a><br />
  206. <h3>example applications</h3>
  207. <a class='exampleLink' href="examples/network/exampleApplications/les_miserables.html">les miserables cast</a><br />
  208. <a class='exampleLink' href="examples/network/exampleApplications/loadingBar.html">loading bar during stabilization</a><br />
  209. <a class='exampleLink' href="examples/network/exampleApplications/neighbourhood_highlight.html">neighbourhood heighlight</a><br />
  210. <a class='exampleLink' href="examples/network/exampleApplications/nodeLegend.html">using nodes as a legend</a><br />
  211. <a class='exampleLink' href="examples/network/exampleApplications/worldCupPerformance.html">performance test with the worldcup data</a><br />
  212. <h3>other</h3>
  213. <a class='exampleLink' href="examples/network/other/animationShowcase.html">animation showcase</a><br />
  214. <a class='exampleLink' href="examples/network/other/clustering.html">clustering possibilities</a><br />
  215. <a class='exampleLink' href="examples/network/other/clusteringByZoom.html">clustering by zoom</a><br />
  216. <a class='exampleLink' href="examples/network/other/configuration.html">dynamic configuration</a><br />
  217. <a class='exampleLink' href="examples/network/other/manipulation.html">manipulation interface and localization</a><br />
  218. <a class='exampleLink' href="examples/network/other/navigation.html">navigation buttons and keyboard shortcuts</a><br />
  219. <a class='exampleLink' href="examples/network/other/performance.html">performance test with scale free network</a><br />
  220. </div>
  221. </div>
  222. <br />
  223. <br />
  224. <br />
  225. <br />
  226. </div>
  227. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  228. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  229. <!-- Include all compiled plugins (below), or include individual files as needed -->
  230. <script src="js/bootstrap.min.js"></script>
  231. </body>
  232. </html>