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.

960 lines
31 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>graph3d - vis.js - A dynamic, browser based visualization library.</title>
  10. <!-- Bootstrap core CSS -->
  11. <link href="../css/bootstrap.css" rel="stylesheet">
  12. <!-- Tipue vendor css -->
  13. <link href="../css/tipuesearch.css" rel="stylesheet">
  14. <link href="../css/style.css" rel="stylesheet">
  15. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  16. <!--[if lt IE 9]>
  17. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  18. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  19. <![endif]-->
  20. <link href="../css/prettify.css" type="text/css" rel="stylesheet"/>
  21. <script type="text/javascript" src="../js/googleAnalytics.js"></script>
  22. <script type="text/javascript" src="../js/prettify/prettify.js"></script>
  23. <script src="../js/smooth-scroll.min.js"></script>
  24. <script language="JavaScript">
  25. smoothScroll.init();
  26. </script>
  27. <script type="text/javascript" src="../js/toggleTable.js"></script>
  28. </head>
  29. <body onload="prettyPrint();">
  30. <div class="navbar-wrapper">
  31. <div class="container">
  32. <nav class="navbar navbar-inverse navbar-static-top" role="navigation">
  33. <div class="container">
  34. <div class="navbar-header">
  35. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
  36. aria-expanded="false" aria-controls="navbar">
  37. <span class="sr-only">Toggle navigation</span>
  38. <span class="icon-bar"></span>
  39. <span class="icon-bar"></span>
  40. <span class="icon-bar"></span>
  41. </button>
  42. <a class="navbar-brand hidden-sm" href="./index.html">vis.js</a>
  43. </div>
  44. <div id="navbar" class="navbar-collapse collapse">
  45. <ul class="nav navbar-nav">
  46. <li><a href="http://www.visjs.org/index.html#modules">Modules</a></li>
  47. <li><a href="http://www.visjs.org/blog.html">Blog</a></li>
  48. <li><a href="http://www.visjs.org/index.html#download_install">Download</a></li>
  49. <li><a href="http://www.visjs.org/showcase/index.html">Showcase</a></li>
  50. <li><a href="http://www.visjs.org/index.html#contribute">Contribute</a></li>
  51. <li><a href="http://www.visjs.org/featureRequests.html">Feature requests</a></li>
  52. <li><a href="http://www.visjs.org/index.html#licenses">License</a></li>
  53. </ul>
  54. <form class="navbar-form navbar-right" role="search">
  55. <input name="q" id="tipue_search_input" autocomplete="off" type="text" class="form-control" placeholder="Enter keywords">
  56. <button type="submit" class="btn btn-default">Go!</button>
  57. </form>
  58. <div id="search-results-wrapper" class="panel panel-default">
  59. <div class="panel-body">
  60. <div id="tipue_search_content"></div>
  61. </div>
  62. </div>
  63. <div id="keyword-info" class="panel panel-success">
  64. <div class="panel-body">
  65. Found <span id="keyword-count"></span> results. Click <a id="keyword-jumper-button" href="">here</a> to jump to the first keyword occurence!
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. </nav>
  71. </div>
  72. </div>
  73. <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>
  74. <div class="container full">
  75. <h1>Graph3d</h1>
  76. <h2 id="Overview">Overview</h2>
  77. <p>
  78. Graph3d is an interactive visualization chart to draw data in a three dimensional
  79. graph. You can freely move and zoom in the graph by dragging and scrolling in the
  80. window. Graph3d also supports animation of a graph.
  81. </p>
  82. <p>
  83. Graph3d uses <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Canvas">HTML canvas</a>
  84. to render graphs, and can render up to a few thousands of data points smoothly.
  85. </p>
  86. <h2 id="Contents">Contents</h2>
  87. <ul>
  88. <li><a href="#Overview">Overview</a></li>
  89. <li><a href="#Loading">Loading</a></li>
  90. <li><a href="#Data_Format">Data Format</a></li>
  91. <li><a href="#Configuration_Options">Configuration Options</a></li>
  92. <li><a href="#Methods">Methods</a></li>
  93. <li><a href="#Events">Events</a></li>
  94. <li><a href="#Data_Policy">Data Policy</a></li>
  95. </ul>
  96. <h2 id="Example">Example</h2>
  97. <p>
  98. The following code shows how to create a Graph3d and provide it with data.
  99. More examples can be found in the <a href="../examples">examples</a> directory.
  100. </p>
  101. <pre class="prettyprint lang-html">
  102. &lt;!DOCTYPE HTML&gt;
  103. &lt;html&gt;
  104. &lt;head&gt;
  105. &lt;title&gt;Graph 3D demo&lt;/title&gt;
  106. &lt;style&gt;
  107. body {font: 10pt arial;}
  108. &lt;/style&gt;
  109. &lt;script type="text/javascript" src="../../dist/vis.js"&gt;&lt;/script&gt;
  110. &lt;script type="text/javascript"&gt;
  111. var data = null;
  112. var graph = null;
  113. function custom(x, y) {
  114. return (Math.sin(x/50) * Math.cos(y/50) * 50 + 50);
  115. }
  116. // Called when the Visualization API is loaded.
  117. function drawVisualization() {
  118. // Create and populate a data table.
  119. var data = new vis.DataSet();
  120. // create some nice looking data with sin/cos
  121. var steps = 50; // number of datapoints will be steps*steps
  122. var axisMax = 314;
  123. var axisStep = axisMax / steps;
  124. for (var x = 0; x &lt; axisMax; x+=axisStep) {
  125. for (var y = 0; y &lt; axisMax; y+=axisStep) {
  126. var value = custom(x, y);
  127. data.add({
  128. x: x,
  129. y: y,
  130. z: value,
  131. style: value
  132. });
  133. }
  134. }
  135. // specify options
  136. var options = {
  137. width: '600px',
  138. height: '600px',
  139. style: 'surface',
  140. showPerspective: true,
  141. showGrid: true,
  142. showShadow: false,
  143. keepAspectRatio: true,
  144. verticalRatio: 0.5
  145. };
  146. // create a graph3d
  147. var container = document.getElementById('mygraph');
  148. graph3d = new vis.Graph3d(container, data, options);
  149. }
  150. &lt;/script&gt;
  151. &lt;/head&gt;
  152. &lt;body onload="drawVisualization();"&gt;
  153. &lt;div id="mygraph"&gt;&lt;/div&gt;
  154. &lt;/body&gt;
  155. &lt;/html&gt;
  156. </pre>
  157. <h2 id="Loading">Loading</h2>
  158. <p>
  159. The class name of the Graph3d is <code>vis.Graph3d</code>.
  160. When constructing a Graph3d, an HTML DOM container must be provided to attach
  161. the graph to. Optionally, data and options can be provided.
  162. Data is a vis <code>DataSet</code> or an <code>Array</code>, described in
  163. section <a href="#Data_Format">Data Format</a>.
  164. Options is a name-value map in the JSON format. The available options
  165. are described in section <a href="#Configuration_Options">Configuration Options</a>.
  166. </p>
  167. <pre class="prettyprint lang-js">var graph = new vis.Graph3d(container [, data] [, options]);</pre>
  168. <p>
  169. Data and options can be set or changed later on using the functions
  170. <code>Graph3d.setData(data)</code> and <code>Graph3d.setOptions(options)</code>.
  171. </p>
  172. <h2 id="Data_Format">Data Format</h2>
  173. <p>
  174. Graph3d can load data from an <code>Array</code>, a <code>DataSet</code> (offering 2 way data binding), or a <code>DataView</code> (offering 1 way data binding).
  175. JSON objects are added to this DataSet by using the <code>add()</code> function.
  176. Data points must have properties <code>x</code>, <code>y</code>, and <code>z</code>,
  177. and can optionally have a property <code>style</code> and <code>filter</code>.
  178. <h3>Definition</h3>
  179. <p>
  180. The DataSet JSON objects are defined as:
  181. </p>
  182. <table class="properties">
  183. <tr>
  184. <th>Name</th>
  185. <th>Type</th>
  186. <th>Required</th>
  187. <th>Description</th>
  188. </tr>
  189. <tr>
  190. <td>x</td>
  191. <td>number</td>
  192. <td>yes</td>
  193. <td>Location on the x-axis.</td>
  194. </tr>
  195. <tr>
  196. <td>y</td>
  197. <td>number</td>
  198. <td>yes</td>
  199. <td>Location on the y-axis.</td>
  200. </tr>
  201. <tr>
  202. <td>z</td>
  203. <td>number</td>
  204. <td>yes</td>
  205. <td>Location on the z-axis.</td>
  206. </tr>
  207. <tr>
  208. <td>style</td>
  209. <td>number</td>
  210. <td>no</td>
  211. <td>The data value, required for graph styles <code>dot-color</code> and
  212. <code>dot-size</code>.
  213. </td>
  214. </tr>
  215. <tr>
  216. <td>filter</td>
  217. <td>*</td>
  218. <td>no</td>
  219. <td>Filter values used for the animation.
  220. This column may have any type, such as a number, string, or Date.</td>
  221. </tr>
  222. </table>
  223. <h2 id="Configuration_Options">Configuration Options</h2>
  224. <p>
  225. Options can be used to customize the graph. Options are defined as a JSON object.
  226. All options are optional.
  227. </p>
  228. <pre class="prettyprint lang-js">
  229. var options = {
  230. width: '100%',
  231. height: '400px',
  232. style: 'surface'
  233. };
  234. </pre>
  235. <p>
  236. The following options are available.
  237. </p>
  238. <table class="options" id="optionTable">
  239. <tr>
  240. <th>Name</th>
  241. <th>Type</th>
  242. <th>Default</th>
  243. <th>Description</th>
  244. </tr>
  245. <tr>
  246. <td>animationInterval</td>
  247. <td>number</td>
  248. <td>1000</td>
  249. <td>The animation interval in milliseconds. This determines how fast
  250. the animation runs.</td>
  251. </tr>
  252. <tr>
  253. <td>animationPreload</td>
  254. <td>boolean</td>
  255. <td>false</td>
  256. <td>If false, the animation frames are loaded as soon as they are requested.
  257. if <code>animationPreload</code> is true, the graph will automatically load
  258. all frames in the background, resulting in a smoother animation as soon as
  259. all frames are loaded. The load progress is shown on screen.</td>
  260. </tr>
  261. <tr>
  262. <td>animationAutoStart</td>
  263. <td>boolean</td>
  264. <td>false</td>
  265. <td>If true, the animation starts playing automatically after the graph
  266. is created.</td>
  267. </tr>
  268. <tr>
  269. <td>axisColor</td>
  270. <td>string</td>
  271. <td>'#4D4D4D'</td>
  272. <td>The color of the axis lines and the text along the axis.</td>
  273. </tr>
  274. <tr class='toggle collapsible' onclick="toggleTable('optionTable','backgroundColor', this);">
  275. <td><span parent="backgroundColor" class="right-caret"></span> backgroundColor</td>
  276. <td>string or Object</td>
  277. <td>Object</td>
  278. <td>The background color for the main area of the chart.
  279. Can be either a simple HTML color string, for example: 'red' or '#00cc00',
  280. or an object with the following properties.</td>
  281. </tr>
  282. <tr parent="backgroundColor" class="hidden">
  283. <td class="indent">backgroundColor.fill</td>
  284. <td>string</td>
  285. <td>'white'</td>
  286. <td>The chart fill color, as an HTML color string.</td>
  287. </tr>
  288. <tr parent="backgroundColor" class="hidden">
  289. <td class="indent">backgroundColor.stroke</td>
  290. <td>string</td>
  291. <td>'gray'</td>
  292. <td>The color of the chart border, as an HTML color string.</td>
  293. </tr>
  294. <tr>
  295. <tr parent="backgroundColor" class="hidden">
  296. <td class="indent">backgroundColor.strokeWidth</td>
  297. <td>number</td>
  298. <td>1</td>
  299. <td>The border width, in pixels.</td>
  300. </tr>
  301. <tr class='toggle collapsible' onclick="toggleTable('optionTable','cameraPosition', this);">
  302. <td><span parent="cameraPosition" class="right-caret"></span> cameraPosition</td>
  303. <td>Object</td>
  304. <td>Object</td>
  305. <td>Set the initial rotation and position of the camera.
  306. All parameters are optional.
  307. </tr>
  308. <tr parent="cameraPosition" class="hidden">
  309. <td class="indent">cameraPosition.horizontal</td>
  310. <td>number</td>
  311. <td>1.0</td>
  312. <td>Value in radians. It can have any
  313. value, but is normally in the range of 0 and 2*Pi.</td>
  314. </tr>
  315. <tr parent="cameraPosition" class="hidden">
  316. <td class="indent">cameraPosition.vertical</td>
  317. <td>number</td>
  318. <td>0.5</td>
  319. <td>Value in radians between 0 and 0.5*Pi.</td>
  320. </tr>
  321. <tr parent="cameraPosition" class="hidden">
  322. <td class="indent">cameraPosition.distance</td>
  323. <td>number</td>
  324. <td>1.7</td>
  325. <td>The (normalized) distance from the
  326. camera to the center of the graph, in the range of 0.71 to 5.0. A
  327. larger distance puts the graph further away, making it smaller.</p>
  328. </tr>
  329. <tr class='toggle collapsible' onclick="toggleTable('optionTable','dataColor', this);">
  330. <td><span parent="dataColor" class="right-caret"></span> dataColor</td>
  331. <td>string or object</td>
  332. <td>Object</td>
  333. <td>When <code>dataColor</code> is a string, it will set the color for both border and fill color of dots and bars. Applicable for styles <code>dot-size</code>, <code>bar-size</code>, and <code>line</code>. When an object, it can contain the properties descibed below.</td>
  334. </tr>
  335. <tr parent="dataColor" class="hidden">
  336. <td class="indent">dataColor.fill</td>
  337. <td>string</td>
  338. <td>'#7DC1FF'</td>
  339. <td>The fill color of the dots or bars. Applicable when using styles <code>dot-size</code>, <code>bar-size</code>, or <code>line</code>.</td>
  340. </tr>
  341. <tr parent="dataColor" class="hidden">
  342. <td class="indent">dataColor.stroke</td>
  343. <td>string</td>
  344. <td>'#3267D2'</td>
  345. <td>The border color of the dots or bars. Applicable when using styles <code>dot-size</code> or <code>bar-size</code>.</td>
  346. </tr>
  347. <tr parent="dataColor" class="hidden">
  348. <td class="indent">dataColor.strokeWidth</td>
  349. <td>number</td>
  350. <td>1</td>
  351. <td>The line width of dots, bars and lines. Applicable for all styles.</td>
  352. </tr>
  353. <tr>
  354. <td>dotSizeRatio</td>
  355. <td>number</td>
  356. <td>0.02</td>
  357. <td>Ratio of the size of the dots with respect to the width of the graph.</td>
  358. </tr>
  359. <tr>
  360. <td>dotSizeMinFraction</td>
  361. <td>number</td>
  362. <td>0.5</td>
  363. <td>Size of minimum-value dot as a fraction of dotSizeRatio.
  364. Applicable when using style <code>dot-size</code>.</td>
  365. </td>
  366. </tr>
  367. <tr>
  368. <td>dotSizeMaxFraction</td>
  369. <td>number</td>
  370. <td>2.5</td>
  371. <td>Size of maximum-value dot as a fraction of dotSizeRatio.
  372. Applicable when using style <code>dot-size</code>.</td>
  373. </td>
  374. </tr>
  375. <tr>
  376. <td>gridColor</td>
  377. <td>string</td>
  378. <td>'#D3D3D3'</td>
  379. <td>The color of the grid lines.</td>
  380. </tr>
  381. <tr>
  382. <td>height</td>
  383. <td>string</td>
  384. <td>'400px'</td>
  385. <td>The height of the graph in pixels or as a percentage.</td>
  386. </tr>
  387. <tr>
  388. <td>keepAspectRatio</td>
  389. <td>boolean</td>
  390. <td>true</td>
  391. <td>If <code>keepAspectRatio</code> is true, the x-axis and the y-axis
  392. keep their aspect ratio. If false, the axes are scaled such that they
  393. both have the same, maximum with.</td>
  394. </tr>
  395. <tr>
  396. <td>showAnimationControls</td>
  397. <td>boolean</td>
  398. <td>true</td>
  399. <td>If true, animation controls are created at the bottom of the Graph.
  400. The animation controls consists of buttons previous, start/stop, next,
  401. and a slider showing the current frame.
  402. Only applicable when the provided data contains an animation.</td>
  403. </tr>
  404. <tr>
  405. <td>showGrid</td>
  406. <td>boolean</td>
  407. <td>true</td>
  408. <td>If true, grid lines are drawn in the x-y surface (the bottom of the 3d
  409. graph).</td>
  410. </tr>
  411. <tr>
  412. <td>showXAxis</td>
  413. <td>boolean</td>
  414. <td>true</td>
  415. <td>If true, X axis and X axis labels are drawn.</td>
  416. </tr>
  417. <tr>
  418. <td>showYAxis</td>
  419. <td>boolean</td>
  420. <td>true</td>
  421. <td>If true, Y axis and Y axis labels are drawn.</td>
  422. </tr>
  423. <tr>
  424. <td>showZAxis</td>
  425. <td>boolean</td>
  426. <td>true</td>
  427. <td>If true, Z axis and Z axis labels are drawn.</td>
  428. </tr>
  429. <tr>
  430. <td>showPerspective</td>
  431. <td>boolean</td>
  432. <td>true</td>
  433. <td>If true, the graph is drawn in perspective: points and lines which
  434. are further away are drawn smaller.
  435. Note that the graph currently does not support a gray colored bottom side
  436. when drawn in perspective.
  437. </td>
  438. </tr>
  439. <tr>
  440. <td>showLegend</td>
  441. <td>boolean</td>
  442. <td>none</td>
  443. <td>If true, a legend is drawn for the graph (if the graph type supports it).
  444. By default a legend is drawn for dot and dot-color style graphs.
  445. </td>
  446. </tr>
  447. <tr>
  448. <td>showShadow</td>
  449. <td>boolean</td>
  450. <td>false</td>
  451. <td>Show shadow on the graph.</td>
  452. </tr>
  453. <tr>
  454. <td>style</td>
  455. <td>string</td>
  456. <td>'dot'</td>
  457. <td>The style of the 3d graph. Available styles:
  458. <code>bar</code>,
  459. <code>bar-color</code>,
  460. <code>bar-size</code>,
  461. <code>dot</code>,
  462. <code>dot-line</code>,
  463. <code>dot-color</code>,
  464. <code>dot-size</code>,
  465. <code>line</code>,
  466. <code>grid</code>,
  467. or <code>surface</code></td>
  468. </tr>
  469. <tr>
  470. <td>tooltip</td>
  471. <td>boolean | function</td>
  472. <td>false</td>
  473. <td>Show a tooltip showing the values of the hovered data point.
  474. The contents of the tooltip can be customized by providing a callback
  475. function as <code>tooltip</code>. In this case the function is called
  476. with an object containing parameters <code>x</code>,
  477. <code>y</code>, <code>z</code>, and <code>data</code>
  478. (the source JS object for the point) as an argument,
  479. and must return a string which may contain HTML.
  480. </td>
  481. </tr>
  482. <tr class='toggle collapsible' onclick="toggleTable('optionTable','tooltipStyle', this);">
  483. <td><span parent="tooltipStyle" class="right-caret"></span> tooltipStyle</td>
  484. <td>Object</td>
  485. <td>Object</td>
  486. </td>
  487. <td>Tooltip style properties.
  488. Provided properties will be merged with the default object.
  489. </td>
  490. </tr>
  491. <!-- Can't define separate entries for content, line and dot objects here,
  492. because toggleTable() can't handle multiple levels of collapsibles -->
  493. <tr parent="tooltipStyle" class="hidden">
  494. <td class="indent">tooltipStyle.content.padding</td>
  495. <td>string</td>
  496. <td>'10px'</td>
  497. <td></td>
  498. </tr>
  499. <tr parent="tooltipStyle" class="hidden">
  500. <td class="indent">tooltipStyle.content.border</td>
  501. <td>string</td>
  502. <td>'1px solid #4d4d4d'</td>
  503. <td></td>
  504. </tr>
  505. <tr parent="tooltipStyle" class="hidden">
  506. <td class="indent">tooltipStyle.content.color</td>
  507. <td>string</td>
  508. <td>'#1a1a1a'</td>
  509. <td></td>
  510. </tr>
  511. <tr parent="tooltipStyle" class="hidden">
  512. <td class="indent">tooltipStyle.content.background</td>
  513. <td>string</td>
  514. <td>'rgba(255,255,255,0.7)'</td>
  515. <td></td>
  516. </tr>
  517. <tr parent="tooltipStyle" class="hidden">
  518. <td class="indent">tooltipStyle.content.borderRadius</td>
  519. <td>string</td>
  520. <td>'2px'</td>
  521. <td></td>
  522. </tr>
  523. <tr parent="tooltipStyle" class="hidden">
  524. <td class="indent">tooltipStyle.content.boxShadow</td>
  525. <td>string</td>
  526. <td>'5px 5px 10px rgba(128,128,128,0.5)'</td>
  527. <td></td>
  528. </tr>
  529. <tr parent="tooltipStyle" class="hidden">
  530. <td class="indent">tooltipStyle.line.height</td>
  531. <td>string</td>
  532. <td>'40px'</td>
  533. <td></td>
  534. </tr>
  535. <tr parent="tooltipStyle" class="hidden">
  536. <td class="indent">tooltipStyle.line.width</td>
  537. <td>string</td>
  538. <td>'0'</td>
  539. <td></td>
  540. </tr>
  541. <tr parent="tooltipStyle" class="hidden">
  542. <td class="indent">tooltipStyle.line.borderLeft</td>
  543. <td>string</td>
  544. <td>'1px solid #4d4d4d'</td>
  545. <td></td>
  546. </tr>
  547. <tr parent="tooltipStyle" class="hidden">
  548. <td class="indent">tooltipStyle.dot.height</td>
  549. <td>string</td>
  550. <td>'0'</td>
  551. <td></td>
  552. </tr>
  553. <tr parent="tooltipStyle" class="hidden">
  554. <td class="indent">tooltipStyle.dot.width</td>
  555. <td>string</td>
  556. <td>'0'</td>
  557. <td></td>
  558. </tr>
  559. <tr parent="tooltipStyle" class="hidden">
  560. <td class="indent">tooltipStyle.dot.border</td>
  561. <td>string</td>
  562. <td>'5px solid #4d4d4d'</td>
  563. <td></td>
  564. </tr>
  565. <tr parent="tooltipStyle" class="hidden">
  566. <td class="indent">tooltipStyle.dot.borderRadius</td>
  567. <td>string</td>
  568. <td>'5px'</td>
  569. <td></td>
  570. </tr>
  571. <tr>
  572. <td>valueMax</td>
  573. <td>number</td>
  574. <td>none</td>
  575. <td>The maximum value for the value-axis. Only available in combination
  576. with the styles <code>dot-color</code> and <code>dot-size</code>.</td>
  577. </tr>
  578. <tr>
  579. <td>valueMin</td>
  580. <td>number</td>
  581. <td>none</td>
  582. <td>The minimum value for the value-axis. Only available in combination
  583. with the styles <code>dot-color</code> and <code>dot-size</code>.</td>
  584. </tr>
  585. <tr>
  586. <td>verticalRatio</td>
  587. <td>number</td>
  588. <td>0.5</td>
  589. <td>A value between 0.1 and 1.0. This scales the vertical size of the graph
  590. When keepAspectRatio is set to false, and verticalRatio is set to 1.0,
  591. the graph will be a cube.</td>
  592. </tr>
  593. <tr>
  594. <td>width</td>
  595. <td>string</td>
  596. <td>'400px'</td>
  597. <td>The width of the graph in pixels or as a percentage.</td>
  598. </tr>
  599. <tr>
  600. <td>xBarWidth</td>
  601. <td>number</td>
  602. <td>none</td>
  603. <td>The width of bars in x direction. By default, the width is equal to the smallest distance
  604. between the data points.
  605. Only applicable for styles <code>'bar'</code> and <code>'bar-color'</code>.</td>
  606. </tr>
  607. <tr>
  608. <td>xCenter</td>
  609. <td>string</td>
  610. <td>'55%'</td>
  611. <td>The horizontal center position of the graph, as a percentage or in
  612. pixels.</td>
  613. </tr>
  614. <tr>
  615. <td>xMax</td>
  616. <td>number</td>
  617. <td>from data</td>
  618. <td>The maximum value for the x-axis.
  619. If not set, the largest value for x in the data set is used.
  620. </td>
  621. </tr>
  622. <tr>
  623. <td>xMin</td>
  624. <td>number</td>
  625. <td>from data</td>
  626. <td>The minimum value for the x-axis.
  627. If not set, the smallest value for x in the data set is used.
  628. </td>
  629. </tr>
  630. <tr>
  631. <td>xStep</td>
  632. <td>number</td>
  633. <td>none</td>
  634. <td>Step size for the grid on the x-axis.</td>
  635. </tr>
  636. <tr>
  637. <td>xValueLabel</td>
  638. <td>function</td>
  639. <td>none</td>
  640. <td>A function for custom formatting of the labels along the x-axis,
  641. for example <code>function (x) {return (x * 100) + '%'}</code>.
  642. </td>
  643. </tr>
  644. <tr>
  645. <td>yBarWidth</td>
  646. <td>number</td>
  647. <td>none</td>
  648. <td>The width of bars in y direction. By default, the width is equal to the smallest distance
  649. between the data points.
  650. Only applicable for styles <code>'bar'</code> and <code>'bar-color'</code>.</td>
  651. </tr>
  652. <tr>
  653. <td>yCenter</td>
  654. <td>string</td>
  655. <td>'45%'</td>
  656. <td>The vertical center position of the graph, as a percentage or in
  657. pixels.</td>
  658. </tr>
  659. <tr>
  660. <td>yMax</td>
  661. <td>number</td>
  662. <td>from data</td>
  663. <td>The maximum value for the y-axis.
  664. If not set, the largest value for y in the data set is used.
  665. </td>
  666. </tr>
  667. <tr>
  668. <td>yMin</td>
  669. <td>number</td>
  670. <td>from data</td>
  671. <td>The minimum value for the y-axis.
  672. If not set, the smallest value for y in the data set is used.
  673. </td>
  674. </tr>
  675. <tr>
  676. <td>yStep</td>
  677. <td>number</td>
  678. <td>none</td>
  679. <td>Step size for the grid on the y-axis.</td>
  680. </tr>
  681. <tr>
  682. <td>yValueLabel</td>
  683. <td>function</td>
  684. <td>none</td>
  685. <td>A function for custom formatting of the labels along the y-axis,
  686. for example <code>function (y) {return (y * 100) + '%'}</code>.
  687. </td>
  688. </tr>
  689. <tr>
  690. <td>zMax</td>
  691. <td>number</td>
  692. <td>from data</td>
  693. <td>The maximum value for the z-axis.
  694. If not set, the largest value for z in the data set is used.
  695. </td>
  696. </tr>
  697. <tr>
  698. <td>zMin</td>
  699. <td>number</td>
  700. <td>from data</td>
  701. <td>The minimum value for the z-axis.
  702. If not set, the smallest value for z in the data set is used.
  703. </td>
  704. </tr>
  705. <tr>
  706. <td>zStep</td>
  707. <td>number</td>
  708. <td>none</td>
  709. <td>Step size for the grid on the z-axis.</td>
  710. </tr>
  711. <tr>
  712. <td>zValueLabel</td>
  713. <td>function</td>
  714. <td>none</td>
  715. <td>A function for custom formatting of the labels along the z-axis,
  716. for example <code>function (z) {return (z * 100) + '%'}</code>.
  717. </td>
  718. </tr>
  719. <tr>
  720. <td>xLabel</td>
  721. <td>String</td>
  722. <td>x</td>
  723. <td>Label on the X axis.</td>
  724. </tr>
  725. <tr>
  726. <td>yLabel</td>
  727. <td>String</td>
  728. <td>y</td>
  729. <td>Label on the Y axis.</td>
  730. </tr>
  731. <tr>
  732. <td>zLabel</td>
  733. <td>String</td>
  734. <td>z</td>
  735. <td>Label on the Z axis.</td>
  736. </tr>
  737. <tr>
  738. <td>filterLabel</td>
  739. <td>String</td>
  740. <td>time</td>
  741. <td>Label for the filter column.</td>
  742. </tr>
  743. <tr>
  744. <td>legendLabel</td>
  745. <td>String</td>
  746. <td>value</td>
  747. <td>Label for the style description.</td>
  748. </tr>
  749. </table>
  750. <h2 id="Methods">Methods</h2>
  751. <p>
  752. Graph3d supports the following methods.
  753. </p>
  754. <table class="methods">
  755. <tr>
  756. <th>Method</th>
  757. <th>Return Type</th>
  758. <th>Description</th>
  759. </tr>
  760. <tr>
  761. <td>animationStart()</td>
  762. <td>none</td>
  763. <td>Start playing the animation.
  764. Only applicable when animation data is available.</td>
  765. </tr>
  766. <tr>
  767. <td>animationStop()</td>
  768. <td>none</td>
  769. <td>Stop playing the animation.
  770. Only applicable when animation data is available.</td>
  771. </tr>
  772. <tr>
  773. <td>getCameraPosition()</td>
  774. <td>An object with parameters <code>horizontal</code>,
  775. <code>vertical</code> and <code>distance</code></td>
  776. <td>Returns an object with parameters <code>horizontal</code>,
  777. <code>vertical</code> and <code>distance</code>,
  778. which each one of them is a number, representing the rotation and position
  779. of the camera.</td>
  780. </tr>
  781. <tr>
  782. <td>redraw()</td>
  783. <td>none</td>
  784. <td>Redraw the graph. Useful after the camera position is changed externally,
  785. when data is changed, or when the layout of the webpage changed.</td>
  786. </tr>
  787. <tr>
  788. <td>setData(data)</td>
  789. <td>none</td>
  790. <td>Replace the data in the Graph3d.</td>
  791. </tr>
  792. <tr>
  793. <td>setOptions(options)</td>
  794. <td>none</td>
  795. <td>Update options of Graph3d.
  796. The provided options will be merged with current options.</td>
  797. </tr>
  798. <tr>
  799. <td>setSize(width, height)</td>
  800. <td>none</td>
  801. <td>Parameters <code>width</code> and <code>height</code> are strings,
  802. containing a new size for the graph. Size can be provided in pixels
  803. or in percentages.</td>
  804. </tr>
  805. <tr>
  806. <td>setCameraPosition (pos)</td>
  807. <td>{horizontal:&nbsp;1.0, vertical:&nbsp;0.5, distance:&nbsp;1.7}</td>
  808. <td>Set the rotation and position of the camera. Parameter <code>pos</code>
  809. is an object which contains three parameters: <code>horizontal</code>,
  810. <code>vertical</code>, and <code>distance</code>.
  811. Parameter <code>horizontal</code> is a value in radians and can have any
  812. value (but normally in the range of 0 and 2*Pi).
  813. Parameter <code>vertical</code> is a value in radians between 0 and 0.5*Pi.
  814. Parameter <code>distance</code> is the (normalized) distance from the
  815. camera to the center of the graph, in the range of 0.71 to 5.0. A
  816. larger distance puts the graph further away, making it smaller.
  817. All parameters are optional.
  818. </td>
  819. </tr>
  820. </table>
  821. <h2 id="Events">Events</h2>
  822. <p>
  823. Graph3d fires events after the camera position has been changed.
  824. The event can be catched by creating a listener.
  825. Here an example on how to catch a <code>cameraPositionChange</code> event.
  826. </p>
  827. <pre class="prettyprint lang-js">
  828. function onCameraPositionChange(event) {
  829. alert('The camera position changed to:\n' +
  830. 'Horizontal: ' + event.horizontal + '\n' +
  831. 'Vertical: ' + event.vertical + '\n' +
  832. 'Distance: ' + event.distance);
  833. }
  834. // assuming var graph3d = new vis.Graph3d(document.getElementById('mygraph'));
  835. graph3d.on('cameraPositionChange', onCameraPositionChange);
  836. </pre>
  837. <p>
  838. The following events are available.
  839. </p>
  840. <table class="events">
  841. <tr>
  842. <th>name</th>
  843. <th>Properties</th>
  844. <th>Description</th>
  845. </tr>
  846. <tr>
  847. <td>cameraPositionChange</td>
  848. <td>
  849. <ul>
  850. <li><code>horizontal</code>: Number. The horizontal angle of the camera.</li>
  851. <li><code>vertical</code>: Number. The vertical angle of the camera.</li>
  852. <li><code>distance</code>: Number. The distance of the camera to the center of the graph.</li>
  853. </ul>
  854. </td>
  855. <td>The camera position changed. Fired after the user modified the camera position
  856. by moving (dragging) the graph, or by zooming (scrolling),
  857. but not after a call to <code>setCameraPosition</code> method.
  858. The new camera position can be retrieved by calling the method
  859. <code>getCameraPosition</code>.</td>
  860. </tr>
  861. </table>
  862. <h2 id="Data_Policy">Data Policy</h2>
  863. <p>
  864. All code and data are processed and rendered in the browser. No data is sent to any server.
  865. </p>
  866. </div>
  867. <!-- Bootstrap core JavaScript
  868. ================================================== -->
  869. <!-- Placed at the end of the document so the pages load faster -->
  870. <script src="../js/jquery.min.js"></script>
  871. <script src="../js/bootstrap.min.js"></script>
  872. <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  873. <script src="../js/ie10-viewport-bug-workaround.js"></script>
  874. <!-- jquery extensions -->
  875. <script src="../js/jquery.highlight.js"></script>
  876. <script src="../js/jquery.url.min.js"></script>
  877. <!-- Tipue vendor js -->
  878. <script src="../js/tipuesearch.config.js"></script>
  879. <script src="../js/tipuesearch.js"></script>
  880. <!-- controller -->
  881. <script src="../js/main.js"></script>