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.

831 lines
28 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
  1. # vis.js history
  2. http://visjs.org
  3. ## 2015-01-16, version 3.9.1
  4. ### General
  5. - Fixed wrong distribution file deployed on the website and the downloadable
  6. zip file.
  7. ### Network
  8. - Fixed bug where opening a cluster with smoothCurves off caused one child to go crazy.
  9. - Fixed bug where zoomExtent does not work as expected.
  10. - Fixed nodes color data being overridden when having a group and a dataset update query.
  11. - Decoupled animation from physics simulation.
  12. - Fixed scroll being blocked if zoomable is false.
  13. ## 2015-01-16, version 3.9.0
  14. ### Network
  15. - Reverted change in image class, fixed bug #552
  16. - Improved (not neccesarily fixed) the fontFill offset between different browsers. #365
  17. - Fixed dashed lines on firefox on Unix systems
  18. - Altered the Manipulation Mixin to be succesfully destroyed from memory when calling destroy();
  19. - Improved drawing of arrowheads on smooth curves. #349
  20. - Caught case where click originated on external DOM element and drag progressed to vis.
  21. - Added label stroke support to Nodes, Edges & Groups as per-object or global settings. Thank you @klmdb!
  22. - Reverted patch that made nodes return to 'default' setting if no group was assigned to fix issue #561. The correct way to 'remove' a group from a node is to assign it a different one.
  23. - Made the node/edge selected by the popup system the same as selected by the click-to-select system. Thank you @pavlos256!
  24. - Improved edit edge control nodes positions, altered style a little.
  25. - Fixed issue #564 by resetting state to initial when no callback is performed in the return function.
  26. - Added condition to Repulsion similar to BarnesHut to ensure nodes do not overlap.
  27. - Added labelAlignment option to edges. Thanks @T-rav!
  28. - Close active sessions in dataManipulation when calling setData().
  29. - Fixed alignment issue with edgelabels
  30. ### Timeline
  31. - Added byUser flag to options of the rangechange and rangechanged event.
  32. ## 2015-01-09, version 3.8.0
  33. ### General
  34. - Updated to moment.js v2.9.0
  35. ### Network
  36. - Fixed flipping of hierarchical network on update when using RL and DU.
  37. - Added zoomExtentOnStabilize option to network.
  38. - Improved destroy function, added them to the examples.
  39. - Nodes now have bounding boxes that are used for zoomExtent.
  40. - Made physics more stable (albeit a little slower).
  41. - Added a check so only one 'activator' overlay is created on clickToUse.
  42. - Made global color options for edges overrule the inheritColors.
  43. - Improved cleaning up of the physics configuration on destroy and in options.
  44. - Made nodes who lost their group revert back to default color.
  45. - Changed group behaviour, groups now extend the options, not replace. This allows partial defines of color.
  46. - Fixed bug where box shaped nodes did not use hover color.
  47. - Fixed Locales docs.
  48. - When hovering over a node that does not have a title, the title of one of the connected edges that HAS a title is no longer shown.
  49. - Fixed error in repulsion physics model.
  50. - Improved physics handling for smoother network simulation.
  51. - Fixed infinite loop when an image can not be found and no brokenImage is provided.
  52. - Added getBoundingBox method.
  53. - Community fix for SVG images in IE11, thanks @dponch!
  54. - Fixed repeating stabilized event when the network is already stabilized.
  55. - Added circularImages, thanks for the contribution @brendon1982!
  56. - Stopped infinite loop when brokenImage is also not available.
  57. - Changed util color functions so they don't need eval. Thanks @naskooskov!
  58. ### Graph2d
  59. - Fixed round-off errors of zero on the y-axis.
  60. - added show major/minor lines options to dataAxis.
  61. - Fixed adapting to width and height changes.
  62. - Added a check so only one 'activator' overlay is created on clickToUse.
  63. - DataAxis width option now draws correctly.
  64. ### Timeline
  65. - Implemented support for styling of the vertical grid.
  66. - Support for custom date formatting of the labels on the time axis.
  67. - added show major/minor lines options to timeline.
  68. - Added a check so only one 'activator' overlay is created on clickToUse.
  69. ### Graph3d
  70. - Fixed mouse coordinates for tooltips.
  71. ## 2014-12-09, version 3.7.2
  72. ### Timeline
  73. - Fixed zooming issue on mobile devices.
  74. ### Graph2D
  75. - Fixed infinite loop when clearing DataSet
  76. ### Network
  77. - Sidestepped double touch event from hammer (ugly.. but functional) causing
  78. strange behaviour in manipulation mode
  79. - Better cleanup after reconnecting edges in manipulation mode
  80. - Fixed recursion error with smooth edges that are connected to non-existent nodes
  81. - Added destroy method.
  82. ## 2014-11-28, version 3.7.1
  83. ### Timeline
  84. - Implemented selection of a range of items using Shift+Click.
  85. - Fixed content in range items may overflow range after zoom.
  86. - Fixed onAdd/onUpdate callbacks when using a DataView (thanks @motzel).
  87. - Fixed configuring either `start` or `end`.
  88. - Fixed Timeline and Graph2d getting stuck in an infinite loop in some
  89. circumstances.
  90. - Fixed background items being selectable and editable when a height is set.
  91. ### Graph2D
  92. - Added `alignZeros` option to dataAxis with default value true.
  93. - Fixed bug with points drawn on bargraphs
  94. - Fixed docs
  95. - Fixed height increase on scrolling if only `graphHeight` is defined.
  96. ### Network
  97. - dragEnd event now does not give the selected nodes if only the viewport has been dragged #453
  98. - merged high DPI fix by @crubier, thanks!
  99. ## 2014-11-14, version 3.7.0
  100. ### Graph2D
  101. - Added points style for scatterplots and pointclouds.
  102. - Modularized the Graph2D draw styles.
  103. - Added a finishedRedraw event.
  104. ### Network
  105. - Added pointer properties to the click and the doubleClick events containing the XY coordinates in DOM and canvas space.
  106. - Removed IDs from navigation so multiple networks can be shown on the same page. (#438)
  107. ### Timeline
  108. - Added a finishedRedraw event.
  109. - Fixed the disappearing item bug.
  110. - Fixed keycharm issue.
  111. ## 2014-11-07, version 3.6.4
  112. ### General
  113. - Removed mousetrap due to Apache license, created keycharm and implemented it with vis.
  114. ### Timeline
  115. - Fixed height of background items when having a fixed or max height defined.
  116. - Fixed only one item being dragged when multiple items are selected.
  117. - Optimised a serious slowdown on performance since hidden dates.
  118. ### Network
  119. - Fixed onRelease with navigation option.
  120. - Fixed arrow heads not being colored.
  121. ### Graph2D
  122. - Fixed cleaning up of groups.
  123. - Throw error message when items are added before groups.
  124. - Made graphHeight automatic if height is defined AND if graphHeight is smaller than the center panel when height is defined as well.
  125. - Added new verticalDrag event for internal use, allowing the vertical scrolling of the grid lines on drag.
  126. - Fixed moving legend when postioned on the bottom and vertical dragging.
  127. - Optimised a serious slowdown on performance since hidden dates.
  128. - Accepted a large pull request from @cdjackson adding the following features (thank you!):
  129. - Titles on the DataAxis to explain what units you are using.
  130. - A style field for groups and datapoints so you can dynamically change styles.
  131. - A precision option to manually set the amount of decimals.
  132. - Two new examples showing the new features.
  133. ## 2014-10-28, version 3.6.3
  134. ### Timeline
  135. - Fixed background items not always be cleared when removing them.
  136. - Fixed visible items not always be displayed.
  137. - Performance improvements when doing a lot of changes at once in a DataSet.
  138. ### Network
  139. - Fixed dashed and arrow lines not using inheritColor.
  140. ### DataSet
  141. - Support for queueing of changes, and flushing them at once.
  142. - Implemented `DataSet.setOptions`. Only applicable for the `queue` options.
  143. ## 2014-10-24, version 3.6.2
  144. - Vis.js is now dual licensed under both Apache 2.0 and MIT.
  145. ## 2014-10-22, version 3.6.1
  146. ### Timeline
  147. - Fixed uneven stepsized with hidden dates.
  148. - Fixed multiple bugs with regards to hidden dates.
  149. - Fixed subgroups and added subgroup sorting. Subgroup labels will be in future releases.
  150. ## 2014-10-21, version 3.6.0
  151. ### Network
  152. - Title of nodes and edges can now be an HTML element too.
  153. - Renamed storePosition to storePositions. Added deprication message and old name still works.
  154. - Worked around hammer.js bug with multiple release listeners.
  155. - Improved cleaning up after manipulation toolbar.
  156. - Added getPositions() method to get the position of all nodes or some of them if specific Ids are supplied.
  157. - Added getCenterCoordinates() method to get the x and y position in canvas space of the center of the view.
  158. - Fixed node label becoming undefined.
  159. - Fixed cluster fontsize scaling.
  160. - Fixed cluster sector scaling.
  161. - Added oldHeight and oldWidth to resize event.
  162. ### Timeline
  163. - Implemented field `style` for both items and groups, to set a custom style for
  164. individual items.
  165. - Fixed height of BackgroundItems not being 100% when timeline has a fixed height.
  166. - Fixed width of BackgroundItems not being reduced to 0 when zooming out.
  167. - Fixed onclick events in items not working.
  168. - Added hiddenDates to hide specific times and/or days in the timeline.
  169. ### DataSet
  170. - Event listeners of `update` now receive an extra property `data`,
  171. containing the changed fields of the changed items.
  172. ### Graph2d
  173. - Fixed height of legend when there are many items showing.
  174. ### Graph3d
  175. - Implemented options `xValueLabel`, `yValueLabel` and `zValueLabel` for custom labels along
  176. the x, y, z axis. Thanks @fabriziofortino.
  177. ## 2014-09-16, version 3.5.0
  178. ### Network
  179. - Fixed nodes not always being unfixed when using allowedToMove.
  180. - Added dragStart and dragEnd events.
  181. - Added edge selection on edge labels.
  182. ### Graph2d
  183. - Fixed dataAxis not showing large numbers correctly.
  184. ## 2014-09-12, version 3.4.2
  185. ### Network
  186. - Changed timings for zoomExtent animation.
  187. - Fixed possible cause of freezing graph when animating.
  188. - Added locked to focusOnNode and releaseNode().
  189. - Fixed minor bug in positioning of fontFill of nodes with certain shapes.
  190. - Added startStabilization event.
  191. ## 2014-09-11, version 3.4.1
  192. ### Network
  193. - Fix for introduced bug on zoomExtent navigation button.
  194. - Added animation to zoomExtent navigation button.
  195. - Improved cleaning of Hammer.js bindings.
  196. ### Timeline
  197. - Fixed a bug in IE freezing when margin.item and margin.axis where both 0.
  198. ## 2014-09-10, version 3.4.0
  199. ### Graph2d
  200. - Fixed moment.js url in localization example.
  201. ### Network
  202. - Fixed some positioning issues with the close button of the manipulation menu.
  203. - Added fontFill to Nodes as it is in Edges.
  204. - Implemented support for broken image fallback. Thanks @sfairgrieve.
  205. - Added multiline labels to edges as they are implemented in nodes. Updated
  206. multiline example to show this.
  207. - Added animation and camera controls by the method .moveTo()
  208. - Added new event that fires when the animation is finished.
  209. - Added new example showing the new features of animation.
  210. - Added getScale() method.
  211. ### Timeline
  212. - Implemented support for templates.
  213. - Implemented a new item type: `'background'`. This can be used to mark periods
  214. with a background color and label.
  215. - Implemented support for attaching HTML attributes to items. Thanks @dturkenk.
  216. - Fixed moment.js url in localization example.
  217. - Fixed `className` of groups not being updated when changed.
  218. - Fixed the `id` field of a new item not correctly generated.
  219. - Fixed newly added item ignored when returning an other object instance.
  220. - Fixed option `autoResize` not working on IE in case of changing visibility
  221. of the Timeline container element.
  222. - Fixed an overflow issue with the dots of BoxItems when using groups.
  223. - Fixed a horizontal 1-pixel offset in the items (border width wasn't taken into
  224. account).
  225. - Renamed internal items from `ItemBox`, `ItemRange`, and `ItemPoint` to
  226. respectively `BoxItem`, `RangeItem`, and `PointItem`.
  227. - Fixed an error thrown when calling `destroy()`.
  228. ## 2014-08-29, version 3.3.0
  229. ### Timeline
  230. - Added localization support.
  231. - Implemented option `clickToUse`.
  232. - Implemented function `focus(id)` to center a specific item (or multiple items)
  233. on screen.
  234. - Implemented an option `focus` for `setSelection(ids, options)`, to immediately
  235. focus selected nodes.
  236. - Implemented function `moveTo(time, options)`.
  237. - Implemented animated range change for functions `fit`, `focus`, `setSelection`,
  238. and `setWindow`.
  239. - Implemented functions `setCurrentTime(date)` and `getCurrentTime()`.
  240. - Implemented a new callback function `onMoving(item, callback)`.
  241. - Implemented support for option `align` for range items.
  242. - Fixed the `change` event sometimes being fired twice on IE10.
  243. - Fixed canceling moving an item to another group did not move the item
  244. back to the original group.
  245. - Fixed the `change` event sometimes being fired twice on IE10.
  246. - Fixed canceling moving an item to another group did not move the item
  247. back to the original group.
  248. ### Network
  249. - A fix in reading group properties for a node.
  250. - Fixed physics solving stopping when a support node was not moving.
  251. - Implemented localization support.
  252. - Implemented option `clickToUse`.
  253. - Improved the `stabilized` event, it's now firing after every stabilization
  254. with iteration count as parameter.
  255. - Fixed page scroll event not being blocked when moving around in Network
  256. using arrow keys.
  257. - Fixed an initial rendering before the graph has been stabilized.
  258. - Fixed bug where loading hierarchical data after initialization crashed network.
  259. - Added different layout method to the hierarchical system based on the direction of the edges.
  260. ### Graph2d
  261. - Implemented option `handleOverlap` to support overlap, sideBySide and stack.
  262. - Implemented two examples showing the `handleOverlap` functionality.
  263. - Implemented `customRange` for the Y axis and an example showing how it works.
  264. - Implemented localization support.
  265. - Implemented option `clickToUse`.
  266. - Implemented functions `setCurrentTime(date)` and `getCurrentTime()`.
  267. - Implemented function `moveTo(time, options)`.
  268. - Fixed bugs.
  269. - Added groups.visibility functionality and an example showing how it works.
  270. ## 2014-08-14, version 3.2.0
  271. ### General
  272. - Refactored Timeline and Graph2d to use the same core.
  273. ### Graph2d
  274. - Added `visible` property to the groups.
  275. - Added `getLegend()` method.
  276. - Added `isGroupVisible()` method.
  277. - Fixed empty group bug.
  278. - Added `fit()` and `getItemRange()` methods.
  279. ### Timeline
  280. - Fixed items in groups sometimes being displayed but not positioned correctly.
  281. - Fixed a group "null" being displayed in IE when not using groups.
  282. ### Network
  283. - Fixed mass = 0 for nodes.
  284. - Revamped the options system. You can globally set options (network.setOptions) to update settings of nodes and edges that have not been specifically defined by the individual nodes and edges.
  285. - Disabled inheritColor when color information is set on an edge.
  286. - Tweaked examples.
  287. - Removed the global length property for edges. The edgelength is part of the physics system. Therefore, you have to change the springLength of the physics system to change the edge length. Individual edge lengths can still be defined.
  288. - Removed global edge length definition form examples.
  289. - Removed onclick and onrelease for navigation and switched to Hammer.js (fixing touchscreen interaction with navigation).
  290. - Fixed error on adding an edge without having created the nodes it should be connected to (in the case of dynamic smooth curves).
  291. ## 2014-07-22, version 3.1.0
  292. ### General
  293. - Refactored the code to commonjs modules, which are browserifyable. This allows
  294. to create custom builds.
  295. ### Timeline
  296. - Implemented function `getVisibleItems()`, which returns the items visible
  297. in the current window.
  298. - Added options `margin.item.horizontal` and `margin.item.vertical`, which
  299. allows to specify different margins horizontally/vertically.
  300. - Removed check for number of arguments in callbacks `onAdd`, `onUpdate`,
  301. `onRemove`, and `onMove`.
  302. - Fixed items in groups sometimes being displayed but not positioned correctly.
  303. - Fixed range where the `end` of the first is equal to the `start` of the second
  304. sometimes being stacked instead of put besides each other when `item.margin=0`
  305. due to round-off errors.
  306. ### Network (formerly named Graph)
  307. - Expanded smoothCurves options for improved support for large clusters.
  308. - Added multiple types of smoothCurve drawing for greatly improved performance.
  309. - Option for inherited edge colors from connected nodes.
  310. - Option to disable the drawing of nodes or edges on drag.
  311. - Fixed support nodes not being cleaned up if edges are removed.
  312. - Improved edge selection detection for long smooth curves.
  313. - Fixed dot radius bug.
  314. - Updated max velocity of nodes to three times it's original value.
  315. - Made "stabilized" event fire every time the network stabilizes.
  316. - Fixed drift in dragging nodes while zooming.
  317. - Fixed recursively constructing of hierarchical layouts.
  318. - Added borderWidth option for nodes.
  319. - Implemented new Hierarchical view solver.
  320. - Fixed an issue with selecting nodes when the web page is scrolled down.
  321. - Added Gephi JSON parser
  322. - Added Neighbour Highlight example
  323. - Added Import From Gephi example
  324. - Enabled color parsing for nodes when supplied with rgb(xxx,xxx,xxx) value.
  325. ### DataSet
  326. - Added .get() returnType option to return as JSON object, Array or Google
  327. DataTable.
  328. ## 2014-07-07, version 3.0.0
  329. ### Timeline
  330. - Implemented support for displaying a `title` for both items and groups.
  331. - Fixed auto detected item type being preferred over the global item `type`.
  332. - Throws an error when constructing without new keyword.
  333. - Removed the 'rangeoverflow' item type. Instead, one can use a regular range
  334. and change css styling of the item contents to:
  335. .vis.timeline .item.range .content {
  336. overflow: visible;
  337. }
  338. - Fixed the height of background and foreground panels of groups.
  339. - Fixed ranges in the Timeline sometimes overlapping when dragging the Timeline.
  340. - Fixed `DataView` not working in Timeline.
  341. ### Network (formerly named Graph)
  342. - Renamed `Graph` to `Network` to prevent confusion with the visualizations
  343. `Graph2d` and `Graph3d`.
  344. - Renamed option `dragGraph` to `dragNetwork`.
  345. - Now throws an error when constructing without new keyword.
  346. - Added pull request from Vukk, user can now define the edge width multiplier
  347. when selected.
  348. - Fixed `graph.storePositions()`.
  349. - Extended Selection API with `selectNodes` and `selectEdges`, deprecating
  350. `setSelection`.
  351. - Fixed multiline labels.
  352. - Changed hierarchical physics solver and updated docs.
  353. ### Graph2d
  354. - Added first iteration of the Graph2d.
  355. ### Graph3d
  356. - Now throws an error when constructing without new keyword.
  357. ## 2014-06-19, version 2.0.0
  358. ### Timeline
  359. - Implemented function `destroy` to neatly cleanup a Timeline.
  360. - Implemented support for dragging the timeline contents vertically.
  361. - Implemented options `zoomable` and `moveable`.
  362. - Changed default value of option `showCurrentTime` to true.
  363. - Internal refactoring and simplification of the code.
  364. - Fixed property `className` of groups not being applied to related contents and
  365. background elements, and not being updated once applied.
  366. ### Graph
  367. - Reduced the timestep a little for smoother animations.
  368. - Fixed dataManipulation.initiallyVisible functionality (thanks theGrue).
  369. - Forced typecast of fontSize to Number.
  370. - Added editing of edges using the data manipulation toolkit.
  371. ### DataSet
  372. - Renamed option `convert` to `type`.
  373. ## 2014-06-06, version 1.1.0
  374. ### Timeline
  375. - Select event now triggers repeatedly when selecting an already selected item.
  376. - Renamed `Timeline.repaint()` to `Timeline.redraw()` to be consistent with
  377. the other visualisations of vis.js.
  378. - Fixed `Timeline.clear()` not resetting a configured `options.start` and
  379. `options.end`.
  380. ### Graph
  381. - Fixed error with zero nodes with hierarchical layout.
  382. - Added focusOnNode function.
  383. - Added hover option.
  384. - Added dragNodes option. Renamed movebale to dragGraph option.
  385. - Added hover events (hoverNode, blurNode).
  386. ### Graph3D
  387. - Ported Graph3D from Chap Links Library.
  388. ## 2014-05-28, version 1.0.2
  389. ### Timeline
  390. - Implemented option `minHeight`, similar to option `maxHeight`.
  391. - Implemented a method `clear([what])`, to clear items, groups, and configuration
  392. of a Timeline instance.
  393. - Added function `repaint()` to force a repaint of the Timeline.
  394. - Some tweaks in snapping dragged items to nice dates.
  395. - Made the instance of moment.js packaged with vis.js accessibly via `vis.moment`.
  396. - A newly created item is initialized with `end` property when option `type`
  397. is `"range"` or `"rangeoverflow"`.
  398. - Fixed a bug in replacing the DataSet of groups via `Timeline.setGroups(groups)`.
  399. - Fixed a bug when rendering the Timeline inside a hidden container.
  400. - Fixed axis scale being determined wrongly for a second Timeline in a single page.
  401. ### Graph
  402. - Added zoomable and moveable options.
  403. - Changes setOptions to avoid resetting view.
  404. - Interchanged canvasToDOM and DOMtoCanvas to correspond with the docs.
  405. ## 2014-05-09, version 1.0.1
  406. ### Timeline
  407. - Fixed width of items with type `rangeoverflow`.
  408. - Fixed a bug wrongly rendering invisible items after updating them.
  409. ### Graph
  410. - Added coordinate conversion from DOM to Canvas.
  411. - Fixed bug where the graph stopped animation after settling in playing with physics.
  412. - Fixed bug where hierarchical physics properties were not handled.
  413. - Added events for change of view and zooming.
  414. ## 2014-05-02, version 1.0.0
  415. ### Timeline
  416. - Large refactoring of the Timeline, simplifying the code.
  417. - Great performance improvements.
  418. - Improved layout of box-items inside groups.
  419. - Items can now be dragged from one group to another.
  420. - Implemented option `stack` to enable/disable stacking of items.
  421. - Implemented function `fit`, which sets the Timeline window such that it fits
  422. all items.
  423. - Option `editable` can now be used to enable/disable individual manipulation
  424. actions (`add`, `updateTime`, `updateGroup`, `remove`).
  425. - Function `setWindow` now accepts an object with properties `start` and `end`.
  426. - Fixed option `autoResize` forcing a repaint of the Timeline with every check
  427. rather than when the Timeline is actually resized.
  428. - Fixed `select` event fired repeatedly when clicking an empty place on the
  429. Timeline, deselecting selected items).
  430. - Fixed initial visible window in case items exceed `zoomMax`. Thanks @Remper.
  431. - Fixed an offset in newly created items when using groups.
  432. - Fixed height of a group not reckoning with the height of the group label.
  433. - Option `order` is now deprecated. This was needed for performance improvements.
  434. - More examples added.
  435. - Minor bug fixes.
  436. ### Graph
  437. - Added recalculate hierarchical layout to update node event.
  438. - Added arrowScaleFactor to scale the arrows on the edges.
  439. ### DataSet
  440. - A DataSet can now be constructed with initial data, like
  441. `new DataSet(data, options)`.
  442. ## 2014-04-18, version 0.7.4
  443. ### Graph
  444. - Fixed IE9 bug.
  445. - Style fixes.
  446. - Minor bug fixes.
  447. ## 2014-04-16, version 0.7.3
  448. ### Graph
  449. - Fixed color bug.
  450. - Added pull requests from kannonboy and vierja: tooltip styling, label fill
  451. color.
  452. ## 2014-04-09, version 0.7.2
  453. ### Graph
  454. - Fixed edge select bug.
  455. - Fixed zoom bug on empty initialization.
  456. ## 2014-03-27, version 0.7.1
  457. ### Graph
  458. - Fixed edge color bug.
  459. - Fixed select event bug.
  460. - Clarified docs, stressing importance of css inclusion for correct display of
  461. navigation an manipulation icons.
  462. - Improved and expanded playing with physics (configurePhysics option).
  463. - Added highlights to navigation icons if the corresponding key is pressed.
  464. - Added freezeForStabilization option to improve stabilization with cached
  465. positions.
  466. ## 2014-03-07, version 0.7.0
  467. ### Graph
  468. - Changed navigation CSS. Icons are now always correctly positioned.
  469. - Added stabilizationIterations option to graph.
  470. - Added storePosition() method to save the XY positions of nodes in the DataSet.
  471. - Separated allowedToMove into allowedToMoveX and allowedToMoveY. This is
  472. required for initializing nodes from hierarchical layouts after
  473. storePosition().
  474. - Added color options for the edges.
  475. ## 2014-03-06, version 0.6.1
  476. ### Graph
  477. - Bugfix graphviz examples.
  478. - Bugfix labels position for smooth curves.
  479. - Tweaked graphviz example physics.
  480. - Updated physics documentation to stress importance of configurePhysics.
  481. ### Timeline
  482. - Fixed a bug with options `margin.axis` and `margin.item` being ignored when
  483. setting them to zero.
  484. - Some clarifications in the documentation.
  485. ## 2014-03-05, version 0.6.0
  486. ### Graph
  487. - Added Physics Configuration option. This makes tweaking the physics system to
  488. suit your needs easier.
  489. - Click and doubleClick events.
  490. - Initial zoom bugfix.
  491. - Directions for Hierarchical layout.
  492. - Refactoring and bugfixes.
  493. ## 2014-02-20, version 0.5.1
  494. - Fixed broken bower module.
  495. ## 2014-02-20, version 0.5.0
  496. ### Timeline
  497. - Editable Items: drag items, add new items, update items, and remove items.
  498. - Implemented options `selectable`, `editable`.
  499. - Added events `timechange` and `timechanged` when dragging the custom time bar.
  500. - Multiple items can be selected using ctrl+click or shift+click.
  501. - Implemented functions `setWindow(start, end)` and `getWindow()`.
  502. - Fixed scroll to zoom not working on IE in standards mode.
  503. ### Graph
  504. - Editable nodes and edges: create, update, and remove them.
  505. - Support for smooth, curved edges (on by default).
  506. - Performance improvements.
  507. - Fixed scroll to zoom not working on IE in standards mode.
  508. - Added hierarchical layout option.
  509. - Overhauled physics system, now using Barnes-Hut simulation by default. Great
  510. performance gains.
  511. - Modified clustering system to give better results.
  512. - Adaptive performance system to increase visual performance (60fps target).
  513. ### DataSet
  514. - Renamed functions `subscribe` and `unsubscribe` to `on` and `off` respectively.
  515. ## 2014-01-31, version 0.4.0
  516. ### Timeline
  517. - Implemented functions `on` and `off` to create event listeners for events
  518. `rangechange`, `rangechanged`, and `select`.
  519. - Implemented function `select` to get and set the selected items.
  520. - Items can be selected by clicking them, muti-select by holding them.
  521. - Fixed non working `start` and `end` options.
  522. ### Graph
  523. - Fixed longstanding bug in the force calculation, increasing simulation
  524. stability and fluidity.
  525. - Reworked the calculation of the Graph, increasing performance for larger
  526. datasets (up to 10x!).
  527. - Support for automatic clustering in Graph to handle large (>50000) datasets
  528. without losing performance.
  529. - Added automatic initial zooming to Graph, to more easily view large amounts
  530. of data.
  531. - Added local declustering to Graph, freezing the simulation of nodes outside
  532. of the cluster.
  533. - Added support for key-bindings by including mouseTrap in Graph.
  534. - Added navigation controls.
  535. - Added keyboard navigation.
  536. - Implemented functions `on` and `off` to create event listeners for event
  537. `select`.
  538. ## 2014-01-14, version 0.3.0
  539. - Moved the generated library to folder `./dist`
  540. - Css stylesheet must be loaded explicitly now.
  541. - Implemented options `showCurrentTime` and `showCustomTime`. Thanks @fi0dor.
  542. - Implemented touch support for Timeline.
  543. - Fixed broken Timeline options `min` and `max`.
  544. - Fixed not being able to load vis.js in node.js.
  545. ## 2013-09-20, version 0.2.0
  546. - Implemented full touch support for Graph.
  547. - Fixed initial empty range in the Timeline in case of a single item.
  548. - Fixed field `className` not working for items.
  549. ## 2013-06-20, version 0.1.0
  550. - Added support for DataSet to Graph. Graph now uses an id based set of nodes
  551. and edges instead of a row based array internally. Methods getSelection and
  552. setSelection of Graph now accept a list with ids instead of rows.
  553. - Graph is now robust against edges pointing to non-existing nodes, which
  554. can occur easily while dynamically adding/removing nodes and edges.
  555. - Implemented basic support for groups in the Timeline.
  556. - Added documentation on DataSet and DataView.
  557. - Fixed selection of nodes in a Graph when the containing web page is scrolled.
  558. - Improved date conversion.
  559. - Renamed DataSet option `fieldTypes` to `convert`.
  560. - Renamed function `vis.util.cast` to `vis.util.convert`.
  561. ## 2013-06-07, version 0.0.9
  562. - First working version of the Graph imported from the old library.
  563. - Documentation added for both Timeline and Graph.
  564. ## 2013-05-03, version 0.0.8
  565. - Performance improvements: only visible items are rendered.
  566. - Minor bug fixes and improvements.
  567. ## 2013-04-25, version 0.0.7
  568. - Sanitized the published packages on npm and bower.
  569. ## 2013-04-25, version 0.0.6
  570. - Css is now packaged in the javascript file, and automatically loaded.
  571. - The library uses node style dependency management for modules now, used
  572. with Browserify.
  573. ## 2013-04-16, version 0.0.5
  574. - First working version of the Timeline.
  575. - Website created.