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.

16 lines
318 B

  1. import Node from '../Node'
  2. /**
  3. *
  4. */
  5. class Cluster extends Node {
  6. constructor(options, body, imagelist, grouplist, globalOptions) {
  7. super(options, body, imagelist, grouplist, globalOptions);
  8. this.isCluster = true;
  9. this.containedNodes = {};
  10. this.containedEdges = {};
  11. }
  12. }
  13. export default Cluster;