Giter VIP home page Giter VIP logo

Comments (4)

ugurdogrusoz avatar ugurdogrusoz commented on June 15, 2024

@canbax The users should be able to access number of such nodes, right?

from cytoscape.js-expand-collapse.

canbax avatar canbax commented on June 15, 2024

When the nodes are collapsed, the information about the collapsed children is stored inside their data with a property named collapsedChildren (includes both edges and nodes). So the API users can get this info easily.

Below is a sample code that prints console the number of collapsed children when a collapsed node is tapped.

cy.on('tap', 'node.cy-expand-collapse-collapsed-node', function (evt) {
  let node = evt.target;
  console.log('collapsed children count: ' + node.data('collapsedChildren').length);
});

Here node.data('collapsedChildren') is a cytoscape.js collection.

In the canvas, this information can be shown in at least 2 different ways.

  • This information could be shown in different ways. One way is to show it like in the first image, like a badge. It can be showed like we show expand cue image.

  • It can also be shown on the label. Like for the image below the label could be Ministry of Commerce (2).

Both can be implemented inside the API or an API user can also do these without changing the API.

from cytoscape.js-expand-collapse.

Alexithemia avatar Alexithemia commented on June 15, 2024

I did see how I would get the number from the collapsed node, and I will need to filter out only the nodes as edges are also in the collapsed children collection, adding it to the label would be easy but the badge look is what we want.

How would we go about showing that as a badge like the cue image?

from cytoscape.js-expand-collapse.

ugurdogrusoz avatar ugurdogrusoz commented on June 15, 2024

That's a Cytoscape.js core issue not related to this extension. You could use background images for instance.

from cytoscape.js-expand-collapse.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.