You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the node does not show handleToolTipText like edges.
Below is the code for edges but it does not work for nodes:
edges:[
{
type: "Dependence",
source: "Exposition",
target: "Exposed",
handleTooltipText:
"Dependence - Drag and Drop to Another Node to Reconnect",
}
]
The text was updated successfully, but these errors were encountered:
You can override node rendering with the renderNode function and return your own SVG component with the tooltip. Overriding the node rendering allows you to do so much more with the nodes that is not possible with the default nodes.
Edges are different. We needed the handleTooltipText (provided by a contributor) because react-digraph has to render the edges itself. We do provide an afterRenderEdge function to help modify those edges, but we don't provide a renderEdge function.
Currently the node does not show handleToolTipText like edges.
Below is the code for edges but it does not work for nodes:
The text was updated successfully, but these errors were encountered: