Documentation

hide

hides the tooltip

void hide();

See also

  • api
    • samples
      • articles
      • Example

        myView = webix.ui({
            view:"dataview",
            ...
            tooltip:{
                template:" Rating: #rating# <br> Votes: #votes#"
            }
        });
         
        myView.config.tooltip.hide();

        Back to top