showToolTip method
Show a tooltip Adornment or HTMLInfo. This is called by #doToolTip once that method has found a tooltip to display.
This calls #positionToolTip to make it easier to customize how the tooltip is positioned relative to the object with the tooltip.
This method may be overridden, but you should consider calling this base method in order to get all of its functionality. Please read the Introduction page on Extensions for how to override methods and how to call this base method. @expose @param {Adornment|HTMLInfo} tooltip @param {GraphObject} obj The GraphObject getting the tooltip; this is null if the tooltip is being shown for the diagram background.
Implementation
void showToolTip(
_i2.Object tooltip,
_i3.GraphObject obj,
) {
_i4.callMethod(
this,
'showToolTip',
[
tooltip,
obj,
],
);
}