react-cytoscapejs
react-cytoscapejs copied to clipboard
Does this pkg suport tooltip on hover?
hi, i want to add tooltip on each node , does this pkg provide this feature ?
Did you find a solution to this? If it's not available in-library you can use the cy prop on whatever your favorite Tooltip library to do this.
<CytoscapeComponent elements={[]} cy={(cy) => { cy.on("mouseover", "node", ({ target }) => { const data = target.data() #throw the data onto redux/mobx/whatever #pipe through Tippy console.log({...data.obj}) }) }} />