// element (`htmlTarget`)
ix.api.tooltip.show({
    htmlTarget: ix.api.dom.getHtml("<GUID>"),
    height: 200,
    width: 200,
    title: "Lorem ipsum",
    key: "tt-key-element"
});
// mouse
ix.api.tooltip.show({
    position: "mouse",
    height: 200,
    width: 200,
    title: "Lorem ipsum",
    key: "tt-key-mouse"
});
// window (centered, if not specified)
ix.api.tooltip.show({
    position: "window",
    height: 200,
    width: 200,
    title: "Lorem ipsum",
    key: "tt-key-window"
});
Opens a tooltip which is positioned at
element,mouseorwindow.