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.

74 lines
2.5 KiB

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