|
[app.component.html]
<ejs-gantt id="TooltipTemplate"
//...
[tooltipSettings]="tooltipSettings"
</ejs-gantt>
[app.component.ts]
this.tooltipSettings = {
showTooltip: true,
taskbar: '#taskbarTooltip',
}
[index.html]
<script type="text/x-template" id="taskbarTooltip">
<table>
//...
<tr>
<td style="padding:3px">Ends On:</td>
<td style="padding:3px">${this.getFormatedDate(EndDate)}</td>
</tr>
</table>
</script> |