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.

93 lines
2.9 KiB

10 years ago
10 years ago
11 years ago
11 years ago
  1. vis.js history
  2. http://visjs.org
  3. ## 2014-01-31, version 0.4.0
  4. ### Timeline
  5. - Implemented functions `on` and `off` to create event listeners for events
  6. `rangechange`, `rangechanged`, and `select`.
  7. - Impelmented function `select` to get and set the selected items.
  8. - Items can be selected by clicking them, muti-select by holding them.
  9. - Fixed non working `start` and `end` options.
  10. ### Graph
  11. - Fixed longstanding bug in the force calculation, increasing simulation
  12. stability and fluidity.
  13. - Reworked the calculation of the Graph, increasing performance for larger
  14. datasets (up to 10x!).
  15. - Support for automatic clustering in Graph to handle large (>50000) datasets
  16. without losing performance.
  17. - Added automatic intial zooming to Graph, to more easily view large amounts
  18. of data.
  19. - Added local declustering to Graph, freezing the simulation of nodes outside
  20. of the cluster.
  21. - Added support for key-bindings by including mouseTrap in Graph.
  22. - Added navigation controls.
  23. - Added keyboard navigation.
  24. - Implemented functions `on` and `off` to create event listeners for event
  25. `select`.
  26. ## 2014-01-14, version 0.3.0
  27. - Moved the generated library to folder `./dist`
  28. - Css stylesheet must be loaded explicitly now.
  29. - Implemented options `showCurrentTime` and `showCustomTime`. Thanks fi0dor.
  30. - Implemented touch support for Timeline.
  31. - Fixed broken Timeline options `min` and `max`.
  32. - Fixed not being able to load vis.js in node.js.
  33. ## 2013-09-20, version 0.2.0
  34. - Implemented full touch support for Graph.
  35. - Fixed initial empty range in the Timeline in case of a single item.
  36. - Fixed field `className` not working for items.
  37. ## 2013-06-20, version 0.1.0
  38. - Added support for DataSet to Graph. Graph now uses an id based set of nodes
  39. and edges instead of a row based array internally. Methods getSelection and
  40. setSelection of Graph now accept a list with ids instead of rows.
  41. - Graph is now robust against edges pointing to non-existing nodes, which
  42. can occur easily while dynamically adding/removing nodes and edges.
  43. - Implemented basic support for groups in the Timeline.
  44. - Added documentation on DataSet and DataView.
  45. - Fixed selection of nodes in a Graph when the containing web page is scrolled.
  46. - Improved date conversion.
  47. - Renamed DataSet option `fieldTypes` to `convert`.
  48. - Renamed function `vis.util.cast` to `vis.util.convert`.
  49. ## 2013-06-07, version 0.0.9
  50. - First working version of the Graph imported from the old library.
  51. - Documentation added for both Timeline and Graph.
  52. ## 2013-05-03, version 0.0.8
  53. - Performance improvements: only visible items are rendered.
  54. - Minor bug fixes and improvements.
  55. ## 2013-04-25, version 0.0.7
  56. - Sanitized the published packages on npm and bower.
  57. ## 2013-04-25, version 0.0.6
  58. - Css is now packaged in the javascript file, and automatically loaded.
  59. - The library uses node style dependency management for modules now, used
  60. with Browserify.
  61. ## 2013-04-16, version 0.0.5
  62. - First working version of the Timeline.
  63. - Website created.