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.

113 lines
5.2 KiB

  1. <!DOCTYPE html>
  2. <html lang="en"><head>
  3. <meta charset="utf-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta name="description" content="">
  7. <meta name="author" content="">
  8. <link rel="icon" HREF="favicon.ico">
  9. <title>Data - vis.js - A dynamic, browser based visualization library.</title>
  10. <!-- Bootstrap core CSS -->
  11. <link href="../css/bootstrap.css" rel="stylesheet">
  12. <link href="../css/style.css" rel="stylesheet">
  13. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  14. <!--[if lt IE 9]>
  15. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  16. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  17. <![endif]-->
  18. <link href="../css/prettify.css" type="text/css" rel="stylesheet"/>
  19. <script type="text/javascript" src="../js/googleAnalytics.js"></script>
  20. <script type="text/javascript" src="../js/prettify/prettify.js"></script>
  21. <script src="../js/smooth-scroll.min.js"></script>
  22. <script language="JavaScript">
  23. smoothScroll.init();
  24. </script>
  25. <script type="text/javascript" src="../js/toggleTable.js"></script>
  26. </head>
  27. <body onload="prettyPrint();">
  28. <div class="navbar-wrapper">
  29. <div class="container">
  30. <nav class="navbar navbar-inverse navbar-static-top" role="navigation">
  31. <div class="container">
  32. <div class="navbar-header">
  33. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
  34. aria-expanded="false" aria-controls="navbar">
  35. <span class="sr-only">Toggle navigation</span>
  36. <span class="icon-bar"></span>
  37. <span class="icon-bar"></span>
  38. <span class="icon-bar"></span>
  39. </button>
  40. <a class="navbar-brand hidden-sm" href="./index.html">vis.js</a>
  41. </div>
  42. <div id="navbar" class="navbar-collapse collapse">
  43. <ul class="nav navbar-nav">
  44. <li><a href="http://www.visjs.org/index.html#modules">Modules</a></li>
  45. <li><a href="http://www.visjs.org/blog.html">Blog</a></li>
  46. <li><a href="http://www.visjs.org/index.html#download_install">Download</a></li>
  47. <li><a href="http://www.visjs.org/showcase/index.html">Showcase</a></li>
  48. <li><a href="http://www.visjs.org/index.html#contribute">Contribute</a></li>
  49. <li><a href="http://www.visjs.org/featureRequests.html">Feature requests</a></li>
  50. <li><a href="http://www.visjs.org/index.html#licenses">License</a></li>
  51. </ul>
  52. </div>
  53. </div>
  54. </nav>
  55. </div>
  56. </div>
  57. <a href="https://github.com/almende/vis" class="hidden-xs hidden-sm hidden-md"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
  58. <div class="container full">
  59. <h1>Data</h1>
  60. <p>
  61. One of the starting points of the visualizations of vis.js is that they can deal with dynamic data, and allow manipulation of the data. To enable this, vis.js includes a flexible key/value based <code>DataSet</code> and <code>DataView</code> to handle unstructured JSON data.
  62. </p>
  63. <p>
  64. By providing a <code>DataSet</code> with data to the visualizations, they can subscribe on changes in the <code>DataSet</code> and automatically reflect the changes in their view. Changes in the data can be caused by a server pushing updates to a client, or by other interactive components in the web application. Vice versa, data can be manipulated in one of the visualizations. For example a REST-client can listen for changes and automatically write changes to the server. Or changes can be propagated to other parts of the web application.
  65. </p>
  66. <h2>DataSet</h2>
  67. <p>
  68. A <code>DataSet</code> can be used to store JSON objects by id. Objects can be added, updated and removed from the DatSet, and one can subscribe to changes in the <code>DataSet</code>.
  69. The data in the <code>DataSet</code> can be filtered and ordered, and fields (like
  70. dates) can be converted to a specific type. Data can be normalized when
  71. appending it to the <code>DataSet</code> as well.
  72. </p>
  73. <p>
  74. <a href="dataset.html">Go to the documentation of DataSet</a>
  75. </p>
  76. <h2>DataView</h2>
  77. <p>
  78. A <code>DataView</code> offers a filtered and/or formatted view on a DataSet.
  79. One can subscribe to changes in a <code>DataView</code>, and easily get filtered or
  80. formatted data without having to specify filters and field types all
  81. the time.
  82. </p>
  83. <p>
  84. <a href="dataview.html">Go to the documentation of DataView</a>
  85. </p>
  86. </div>
  87. <!-- Bootstrap core JavaScript
  88. ================================================== -->
  89. <!-- Placed at the end of the document so the pages load faster -->
  90. <script src="../js/jquery.min.js"></script>
  91. <script src="../js/bootstrap.min.js"></script>
  92. <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  93. <script src="../js/ie10-viewport-bug-workaround.js"></script>