Hi,
You can subscribe for the MouseMove event of the event sink service and request an arbitrary tooltip for the shape - like this.
...
document.EventSinkService.NodeMouseMove += new NodeMouseEventHandler(EventSinkService_NodeMouseMove);
...
void EventSinkService_NodeMouseMove(NNodeMouseEventArgs args)
{
// TODO: Get custom tooltip for the hit node.
INNode diagramNode = args.HitNode;
view.InteractivityManager.RequestTooltip("Custom Tooltip");
}
Best Regards,
Nevron Support Team