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.

127 lines
6.2 KiB

  1. <?js
  2. var self = this;
  3. ?>
  4. <!DOCTYPE html>
  5. <html lang="en"><head>
  6. <meta charset="utf-8">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <meta name="description" content="">
  10. <meta name="author" content="">
  11. <link rel="icon" HREF="favicon.ico">
  12. <title>Data - vis.js - A dynamic, browser based visualization library.</title>
  13. <!-- Bootstrap core CSS -->
  14. <link href="../css/bootstrap.css" rel="stylesheet">
  15. <!-- Tipue vendor css -->
  16. <link href="../css/tipuesearch.css" rel="stylesheet">
  17. <link href="../css/style.css" rel="stylesheet">
  18. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  19. <!--[if lt IE 9]>
  20. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  21. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  22. <![endif]-->
  23. <link href="../css/prettify.css" type="text/css" rel="stylesheet"/>
  24. <script type="text/javascript" src="../js/googleAnalytics.js"></script>
  25. <script type="text/javascript" src="../js/prettify/prettify.js"></script>
  26. <script src="../js/smooth-scroll.min.js"></script>
  27. <script language="JavaScript">
  28. smoothScroll.init();
  29. </script>
  30. <script type="text/javascript" src="../js/toggleTable.js"></script>
  31. </head>
  32. <body onload="prettyPrint();">
  33. <div class="navbar-wrapper">
  34. <div class="container">
  35. <nav class="navbar navbar-inverse navbar-static-top" role="navigation">
  36. <div class="container">
  37. <div class="navbar-header">
  38. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
  39. aria-expanded="false" aria-controls="navbar">
  40. <span class="sr-only">Toggle navigation</span>
  41. <span class="icon-bar"></span>
  42. <span class="icon-bar"></span>
  43. <span class="icon-bar"></span>
  44. </button>
  45. <a class="navbar-brand hidden-sm" href="./index.html">vis.js</a>
  46. </div>
  47. <div id="navbar" class="navbar-collapse collapse">
  48. <ul class="nav navbar-nav">
  49. <li><a href="http://www.visjs.org/index.html#modules">Modules</a></li>
  50. <li><a href="http://www.visjs.org/blog.html">Blog</a></li>
  51. <li><a href="http://www.visjs.org/index.html#download_install">Download</a></li>
  52. <li><a href="http://www.visjs.org/showcase/index.html">Showcase</a></li>
  53. <li><a href="http://www.visjs.org/index.html#contribute">Contribute</a></li>
  54. <li><a href="http://www.visjs.org/featureRequests.html">Feature requests</a></li>
  55. <li><a href="http://www.visjs.org/index.html#licenses">License</a></li>
  56. </ul>
  57. <form class="navbar-form navbar-right" role="search">
  58. <input name="q" id="tipue_search_input" autocomplete="off" type="text" class="form-control" placeholder="Enter keywords">
  59. <button type="submit" class="btn btn-default">Go!</button>
  60. </form>
  61. <div id="search-results-wrapper" class="panel panel-default">
  62. <div class="panel-body">
  63. <div id="tipue_search_content"></div>
  64. </div>
  65. </div>
  66. <div id="keyword-info" class="panel panel-success">
  67. <div class="panel-body">
  68. Found <span id="keyword-count"></span> results. Click <a id="keyword-jumper-button" href="">here</a> to jump to the first keyword occurence!
  69. </div>
  70. </div>
  71. </div>
  72. </div>
  73. </nav>
  74. </div>
  75. </div>
  76. <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>
  77. <div class="container full">
  78. <h1>Data</h1>
  79. <p>
  80. 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.
  81. </p>
  82. <p>
  83. 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.
  84. </p>
  85. <h2>DataSet</h2>
  86. <p>
  87. 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>.
  88. The data in the <code>DataSet</code> can be filtered and ordered, and fields (like
  89. dates) can be converted to a specific type. Data can be normalized when
  90. appending it to the <code>DataSet</code> as well.
  91. </p>
  92. <p>
  93. <a href="dataset.html">Go to the documentation of DataSet</a>
  94. </p>
  95. <h2>DataView</h2>
  96. <p>
  97. A <code>DataView</code> offers a filtered and/or formatted view on a DataSet.
  98. One can subscribe to changes in a <code>DataView</code>, and easily get filtered or
  99. formatted data without having to specify filters and field types all
  100. the time.
  101. </p>
  102. <p>
  103. <a href="dataview.html">Go to the documentation of DataView</a>
  104. </p>
  105. </div>
  106. <?js= self.partial('tmpl/html-foot.tmpl') ?>