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.

140 lines
9.0 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. </head>
  23. <body>
  24. <div class="navbar-wrapper">
  25. <div class="container">
  26. <nav class="navbar navbar-inverse navbar-static-top" role="navigation">
  27. <div class="container">
  28. <div class="navbar-header">
  29. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
  30. <span class="sr-only">Toggle navigation</span>
  31. <span class="icon-bar"></span>
  32. <span class="icon-bar"></span>
  33. <span class="icon-bar"></span>
  34. </button>
  35. <a class="navbar-brand hidden-sm" href="./index.html">vis.js</a>
  36. </div>
  37. <div id="navbar" class="navbar-collapse collapse">
  38. <ul class="nav navbar-nav">
  39. <li class="active"><a href="./index.html#modules">Modules</a></li>
  40. <li><a href="./blog.html">Blog</a></li>
  41. <li><a href="./index.html#download_install">Download</a></li>
  42. <li><a href="./showcase/index.html">Showcase</a></li>
  43. <li><a href="./index.html#contribute">Contribute</a></li>
  44. <li><a href="./featureRequests.html">Feature requests</a></li>
  45. <li><a href="./index.html#licenses">License</a></li>
  46. </ul>
  47. </div>
  48. </div>
  49. </nav>
  50. </div>
  51. </div>
  52. <div class="contentWrapper">
  53. <h1>Network Examples</h1>
  54. This page contains examples which show how to use Network. For the documentation, please click the button below: <br><br>
  55. <a class="btn btn-primary" href="./docs/network" role="button">View docs »</a>
  56. <h3>basic usage</h3>
  57. <a class='exampleLink' href="examples/network/basic_usage.html">basic usage</a>
  58. <h3>node styles</h3>
  59. <a class='exampleLink' href="examples/network/nodeStyles/colors.html">colors</a><br />
  60. <a class='exampleLink' href="examples/network/nodeStyles/groups.html">groups</a><br />
  61. <a class='exampleLink' href="examples/network/nodeStyles/customGroups.html">custom groups</a><br />
  62. <a class='exampleLink' href="examples/network/nodeStyles/HTML_in_Nodes.html">HTML in nodes</a><br />
  63. <a class='exampleLink' href="examples/network/nodeStyles/icons.html">icons (Fontawesome and Ionicons)</a><br />
  64. <a class='exampleLink' href="examples/network/nodeStyles/images.html">images</a><br />
  65. <a class='exampleLink' href="examples/network/nodeStyles/circular_images.html">circular images</a><br />
  66. <a class='exampleLink' href="examples/network/nodeStyles/shadows.html">node shadows</a><br />
  67. <a class='exampleLink' href="examples/network/nodeStyles/shapes.html">node shapes</a><br />
  68. <h3>edge styles</h3>
  69. <a class='exampleLink' href="examples/network/edgeStyles/arrows.html">arrows (also combined with dashes)</a><br />
  70. <a class='exampleLink' href="examples/network/edgeStyles/colors.html">different colors</a><br />
  71. <a class='exampleLink' href="examples/network/edgeStyles/dashes.html">dashes</a><br />
  72. <a class='exampleLink' href="examples/network/edgeStyles/smooth.html">smooth curves</a><br />
  73. <a class='exampleLink' href="examples/network/edgeStyles/smoothWorldCup.html">smooth curves in action</a><br />
  74. <h3>labels</h3>
  75. <a class='exampleLink' href="examples/network/labels/label_alignment.html">label alignment (for edges only)</a><br />
  76. <a class='exampleLink' href="examples/network/labels/label_background.html">label background</a><br />
  77. <a class='exampleLink' href="examples/network/labels/label_color_and_size.html">colors and sizes</a><br />
  78. <a class='exampleLink' href="examples/network/labels/label_stroke.html">label stroke</a><br />
  79. <a class='exampleLink' href="examples/network/labels/multiline_text.html">multiline text</a><br />
  80. <h3>layout</h3>
  81. <a class='exampleLink' href="examples/network/layout/hierarchical_layout.html">hierarchical layout</a><br />
  82. <a class='exampleLink' href="examples/network/layout/hierarchical_layout_methods.html">hierarchical layout - different methods</a><br />
  83. <a class='exampleLink' href="examples/network/layout/hierarchical_layout_userdefined.html">hierarchical layout - user defined</a><br />
  84. <a class='exampleLink' href="examples/network/layout/randomSeed.html">set the random seed so every network will be the same</a><br />
  85. <h3>events</h3>
  86. <a class='exampleLink' href="examples/network/events/interactionEvents.html">interaction events, click, rightclick, drag etc.</a><br />
  87. <a class='exampleLink' href="examples/network/events/physicsEvents.html">physics events, stabilization etc.</a><br />
  88. <a class='exampleLink' href="examples/network/events/renderEvents.html">rendering events, use to draw custom items on the canvas.</a><br />
  89. <h3>dynamic data</h3>
  90. <a class='exampleLink' href="examples/network/data/datasets.html">dataset for dynamic data</a><br />
  91. <a class='exampleLink' href="examples/network/data/dynamic_data.html">dynamic data, playground</a><br />
  92. <a class='exampleLink' href="examples/network/data/importing_from_gephi.html">importing data from gephi</a><br />
  93. <a class='exampleLink' href="examples/network/data/scaling_custom.html">scaling the nodes with the value.</a><br />
  94. <a class='exampleLink' href="examples/network/data/scaling_nodes_edges.html">scaling the nodes and edges with the value.</a><br />
  95. <a class='exampleLink' href="examples/network/data/scaling_nodes_edges_labels.html">scaling the nodes, edges and labels with the value.</a><br />
  96. <h3>physics</h3>
  97. <a class='exampleLink' href="examples/network/physics/physicsConfiguration.html">physics configuration</a><br />
  98. <h3>example applications</h3>
  99. <a class='exampleLink' href="examples/network/exampleApplications/les_miserables.html">les miserables cast</a><br />
  100. <a class='exampleLink' href="examples/network/exampleApplications/loadingBar.html">loading bar during stabilization</a><br />
  101. <a class='exampleLink' href="examples/network/exampleApplications/neighbourhood_highlight.html">neighbourhood heighlight</a><br />
  102. <a class='exampleLink' href="examples/network/exampleApplications/nodeLegend.html">using nodes as a legend</a><br />
  103. <a class='exampleLink' href="examples/network/exampleApplications/worldCupPerformance.html">performance test with the worldcup data</a><br />
  104. <h3>other</h3>
  105. <a class='exampleLink' href="examples/network/other/animationShowcase.html">animation showcase</a><br />
  106. <a class='exampleLink' href="examples/network/other/clustering.html">clustering possibilities</a><br />
  107. <a class='exampleLink' href="examples/network/other/clusteringByZoom.html">clustering by zoom</a><br />
  108. <a class='exampleLink' href="examples/network/other/configuration.html">dynamic configuration</a><br />
  109. <a class='exampleLink' href="examples/network/other/manipulation.html">manipulation interface and localization</a><br />
  110. <a class='exampleLink' href="examples/network/other/navigation.html">navigation buttons and keyboard shortcuts</a><br />
  111. <a class='exampleLink' href="examples/network/other/performance.html">performance test with scale free network, customize the amount of nodes</a><br />
  112. </div>
  113. <br />
  114. <br />
  115. <br />
  116. <br />
  117. </div>
  118. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  119. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  120. <!-- Include all compiled plugins (below), or include individual files as needed -->
  121. <script src="js/bootstrap.min.js"></script>
  122. </body>
  123. </html>