High-Performance Data Grid for Angular, React & Blazor | Scheduler, Gantt & More › Forums › Gantt › Anyone with experience integrating: Gantt? › Reply To: Anyone with experience integrating: Gantt?
February 23, 2026 at 1:55 pm
#113386
Participant
Hi,
You can use the taskTemplate
const gantt = document.querySelector(‘smart-gantt-chart’);
gantt.taskTemplate = function (task) {
return
<div class=”custom-task”>
${task.label}
<span>(${task.progress}%)</span>
</div>
`;
};`
Regards,
Alex