Coder Social home page Coder Social logo

Comments (8)

vasturiano avatar vasturiano commented on June 17, 2024 1

@joric the cursor is changing to pointer because the background is clickable. That is indicated by defining a handler for onBackgroundClick.

It's not recommended but if you want you could override that styling by forcing cursor: default on css, everytime a node's hover is completed, i.e. onNodeHover(node => !node && /* your code */).

from force-graph.

vasturiano avatar vasturiano commented on June 17, 2024

@wunaidage you can simply detect click events on your DOM element. Background clicks will bubble up the DOM and can be detected upstream.

from force-graph.

wunaidage avatar wunaidage commented on June 17, 2024

well, I tried. Clicking on node and link will always be triggered before the dom click. What I was doing is to click on node to highlight node and click on outside to cancel highlight. But when I add listener on DOM, I cannot even highlight the node anymore. It turns out that it was highlighted first by force-graph and then cancelled by dom click.

from force-graph.

wunaidage avatar wunaidage commented on June 17, 2024

I think the lib is adding click listener on the canvas but I'm adding listener on the container which cause that sequence

from force-graph.

vasturiano avatar vasturiano commented on June 17, 2024

@wunaidage I've just added two methods to help you with handling these cases:

graph
  .onBackgroundClick(() => ...)
  .onBackgroundRightClick(() => ...)

Make sure to pull the latest version (1.20.0).

from force-graph.

wunaidage avatar wunaidage commented on June 17, 2024

wow!! thanks a lot!!!

from force-graph.

joric avatar joric commented on June 17, 2024

@wunaidage how can I change cursor from hand to arrow? It doesn't look good if pointer is the same on the nodes and on the background.

from force-graph.

joric avatar joric commented on June 17, 2024

@vasturiano I had to use timeout like this, doesn't work without it. Shouldn't be too large, or it affects the nodes:

.onNodeHover(node=>!node && setTimeout(()=>document.querySelector('canvas').classList.remove('clickable'),5))

from force-graph.

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.