Smart UI Components & Libraries – Grid, Scheduler, Gantt, Kanban for Angular, React, Next.js, Vue, Blazor, JavaScript › 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