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.

240 lines
8.9 KiB

10 years ago
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  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>Graph2d Examples</title>
  8. <!-- Bootstrap -->
  9. <link href="css/bootstrap.min.css" rel="stylesheet">
  10. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  11. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  12. <!--[if lt IE 9]>
  13. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  14. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  15. <![endif]-->
  16. <link href="./css/prettify.css" rel="stylesheet" type="text/css" />
  17. <script type="text/javascript" src="./js/prettify/prettify.js"></script>
  18. <script src="./dist/vis.js"></script>
  19. <link href="./dist/vis.css" rel="stylesheet" type="text/css" />
  20. <style>
  21. body {
  22. padding:10px;
  23. font-family: Lustria,Georgia,Times,"Times New Roman",serif !important;
  24. }
  25. pre {
  26. width:450px;
  27. height:552px;
  28. overflow:auto;
  29. }
  30. #visualization {
  31. display:block;
  32. margin-left:470px;
  33. margin-top:-562px;
  34. width:500px;
  35. height:552px;
  36. border: 1px solid #dddddd;
  37. border-radius:4px;
  38. background-color:#fcfcfc;
  39. }
  40. div.textHTMLContent {
  41. margin-top:10px;
  42. margin-bottom:10px;
  43. display:block;
  44. width:800px;
  45. }
  46. img {
  47. border:1px solid #dddddd;
  48. width:250px;
  49. height:250px;
  50. border-radius:10px;
  51. margin-top:10px;
  52. }
  53. div.exampleTitle {
  54. position:relative;
  55. top:-7px;
  56. width:100%;
  57. max-width:250px;
  58. height:30px;
  59. background-color:#064880;
  60. color:#ffffff;
  61. text-align:center;
  62. vertical-align:middle;
  63. line-height: 30px;
  64. border-radius:10px;
  65. }
  66. </style>
  67. <script language="JavaScript">
  68. function loadVis() {
  69. var container = document.getElementById('visualization');
  70. var items = [
  71. {x: '2014-06-11', y: 10},
  72. {x: '2014-06-12', y: 25},
  73. {x: '2014-06-13', y: 30},
  74. {x: '2014-06-14', y: 10},
  75. {x: '2014-06-15', y: 15},
  76. {x: '2014-06-16', y: 30}
  77. ];
  78. var dataset = new vis.DataSet(items);
  79. var options = {
  80. start: '2014-06-10',
  81. end: '2014-06-18',
  82. height:'552px',
  83. clickToUse:true
  84. };
  85. var graph2d = new vis.Graph2d(container, dataset, options);
  86. }
  87. </script>
  88. </head>
  89. <body onload="prettyPrint(); loadVis();">
  90. <h1>Graph2d Examples</h1><a class="btn btn-default" href="#allExamples" role="button">View all examples »</a> <a class="btn btn-primary" href="./docs/graph2d.html" role="button">View docs »</a>
  91. <div class="textHTMLContent">This small code example shows the easiest way to get a Graph2d up and running. This code has been taken from example 1. The working example is shown next to it. Click it to start the interaction.</div>
  92. <pre class="prettyprint lang-html">
  93. &lt;div id="visualization"&gt;&lt;/div&gt;
  94. &lt;script type="text/javascript"&gt;
  95. var container = document.getElementById('visualization');
  96. var items = [
  97. {x: '2014-06-11', y: 10},
  98. {x: '2014-06-12', y: 25},
  99. {x: '2014-06-13', y: 30},
  100. {x: '2014-06-14', y: 10},
  101. {x: '2014-06-15', y: 15},
  102. {x: '2014-06-16', y: 30}
  103. ];
  104. var dataset = new vis.DataSet(items);
  105. var options = {
  106. start: '2014-06-10',
  107. end: '2014-06-18'
  108. };
  109. var graph2d = new vis.Graph2d(container, dataset, options);
  110. &lt;/script&gt;
  111. </pre>
  112. <div id="visualization"></div>
  113. <h2 id="allExamples">All examples</h2>
  114. <div class="container-fluid">
  115. <div class="col-lg-2 col-md-3 col-sm-6">
  116. <a href="examples/graph2d/01_basic.html">
  117. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/1.png">
  118. <div class="exampleTitle">basic</div>
  119. </a>
  120. </div>
  121. <div class="col-lg-2 col-md-3 col-sm-6">
  122. <a href="examples/graph2d/02_bars.html">
  123. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/2.png">
  124. <div class="exampleTitle">bars</div>
  125. </a>
  126. </div>
  127. <div class="col-lg-2 col-md-3 col-sm-6">
  128. <a href="examples/graph2d/03_groups.html">
  129. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/3.png">
  130. <div class="exampleTitle">groups</div>
  131. </a>
  132. </div>
  133. <div class="col-lg-2 col-md-3 col-sm-6">
  134. <a href="examples/graph2d/04_rightAxis.html">
  135. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/4.png">
  136. <div class="exampleTitle">right axis</div>
  137. </a>
  138. </div>
  139. <div class="col-lg-2 col-md-3 col-sm-6">
  140. <a href="examples/graph2d/05_bothAxis.html">
  141. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/5.png">
  142. <div class="exampleTitle">both axis</div>
  143. </a>
  144. </div>
  145. <div class="col-lg-2 col-md-3 col-sm-6">
  146. <a href="examples/graph2d/06_interpolation.html">
  147. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/6.png">
  148. <div class="exampleTitle">interpolation</div>
  149. </a>
  150. </div>
  151. <div class="col-lg-2 col-md-3 col-sm-6">
  152. <a href="examples/graph2d/07_scrollingAndSorting.html">
  153. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/7.png">
  154. <div class="exampleTitle">scrolling and sorting</div>
  155. </a>
  156. </div>
  157. <div class="col-lg-2 col-md-3 col-sm-6">
  158. <a href="examples/graph2d/08_performance.html">
  159. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/8.png">
  160. <div class="exampleTitle">performance</div>
  161. </a>
  162. </div>
  163. <div class="col-lg-2 col-md-3 col-sm-6">
  164. <a href="examples/graph2d/09_external_legend.html">
  165. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/9.png">
  166. <div class="exampleTitle">external legend</div>
  167. </a>
  168. </div>
  169. <div class="col-lg-2 col-md-3 col-sm-6">
  170. <a href="examples/graph2d/10_barsSideBySide.html">
  171. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/10.png">
  172. <div class="exampleTitle">bars side by side</div>
  173. </a>
  174. </div>
  175. <div class="col-lg-2 col-md-3 col-sm-6">
  176. <a href="examples/graph2d/11_barsSideBySideGroups.html">
  177. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/11.png">
  178. <div class="exampleTitle">bars side by side groups</div>
  179. </a>
  180. </div>
  181. <div class="col-lg-2 col-md-3 col-sm-6">
  182. <a href="examples/graph2d/12_customRange.html">
  183. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/12.png">
  184. <div class="exampleTitle">custom range</div>
  185. </a>
  186. </div>
  187. <div class="col-lg-2 col-md-3 col-sm-6">
  188. <a href="examples/graph2d/13_localization.html">
  189. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/13.png">
  190. <div class="exampleTitle">localization</div>
  191. </a>
  192. </div>
  193. <div class="col-lg-2 col-md-3 col-sm-6">
  194. <a href="examples/graph2d/14_toggleGroups.html">
  195. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/14.png">
  196. <div class="exampleTitle">toggle groups</div>
  197. </a>
  198. </div>
  199. <div class="col-lg-2 col-md-3 col-sm-6">
  200. <a href="examples/graph2d/15_streaming_data.html">
  201. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/15.png">
  202. <div class="exampleTitle">streaming data</div>
  203. </a>
  204. </div>
  205. <div class="col-lg-2 col-md-3 col-sm-6">
  206. <a href="examples/graph2d/16_bothAxis_titles.html">
  207. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/16.png">
  208. <div class="exampleTitle">axis titles</div>
  209. </a>
  210. </div>
  211. <div class="col-lg-2 col-md-3 col-sm-6">
  212. <a href="examples/graph2d/17_dynamicStyling.html">
  213. <img class="img-responsive" src="./images/exampleScreenshots/graph2d/17.png">
  214. <div class="exampleTitle">dynamic styling</div>
  215. </a>
  216. </div>
  217. </div>
  218. <br />
  219. <br />
  220. <br />
  221. <br />
  222. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  223. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  224. <!-- Include all compiled plugins (below), or include individual files as needed -->
  225. <script src="js/bootstrap.min.js"></script>
  226. </body>
  227. </html>