Hi all, sorry if this question is too trivial, but I really can't find a way of doing this.
I have instantiated a label to a graph's node, this way:
var /**yfiles.graph.ILabel*/ label = graph.addLabelWithParameterStyleAndTag(
selectedNode,
labelModel.createParameter(yfiles.drawing.InteriorStretchLabelModel.Position.NORTH),
simpleLabelStyle,
sessionStorage.listaBanche.toString(),
"Raccordo"
);
Now, I'd like to have the text also as its tooltip if I place the mouse cursor over it.
I've did this on my yfiles.input.GraphEditorInputMode object:
editorInputMode.toolTipItems = yfiles.graph.GraphItemTypes.ALL;
But i think it's not sufficient. Thank you.