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.

47 lines
1.4 KiB

11 years ago
  1. vis.js history
  2. http://visjs.org
  3. ## 2013-06-20, version 0.1.0
  4. - Added support for DataSet to Graph. Graph now uses an id based set of nodes
  5. and edges instead of a row based array internally. Methods getSelection and
  6. setSelection of Graph now accept a list with ids instead of rows.
  7. - Graph is now robust against edges pointing to non-existing nodes, which
  8. can occur easily while dynamically adding/removing nodes and edges.
  9. - Implemented basic support for groups in the Timeline.
  10. - Added documentation on DataSet and DataView.
  11. - Fixed selection of nodes in a Graph when the containing web page is scrolled.
  12. - Improved date conversion.
  13. - Renamed DataSet option `fieldTypes` to `convert`.
  14. - Renamed function `vis.util.cast` to `vis.util.convert`.
  15. ## 2013-06-07, version 0.0.9
  16. - First working version of the Graph imported from the old library.
  17. - Documentation added for both Timeline and Graph.
  18. ## 2013-05-03, version 0.0.8
  19. - Performance improvements: only visible items are rendered.
  20. - Minor bug fixes and improvements.
  21. ## 2013-04-25, version 0.0.7
  22. - Sanitized the published packages on npm and bower.
  23. ## 2013-04-25, version 0.0.6
  24. - Css is now packaged in the javascript file, and automatically loaded.
  25. - The library uses node style dependency management for modules now, used
  26. with Browserify.
  27. ## 2013-04-16, version 0.0.5
  28. - First working version of the Timeline.
  29. - Website created.