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