Is there a way to dynamically assign tooltip text in Angular? I've attempted the following code with no success:
<h5>Contract Name </h5>
<span tooltip="{{ContractName}}" class="fac-tooltip tip-left">
<input
type="text"
name="ContractName"
id="ContractName"
[readonly]="true"
value= "{{ContractName}}"
>
</span>