show mattooltip on click code example
Example 1: mat tooltip placement
matTooltipPosition="above"
Example 2: show tooltip automatically
$(document).ready(function() {
$('p').tooltip({
trigger: 'manual'
}).tooltip('show');
setTimeout(function(){ $('p').tooltip('hide'); }, 3000);
});