@alex-morris22

@alex-morris22

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: Anyone with experience integrating: Gantt? #113386
    alex.morris22
    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

Viewing 1 post (of 1 total)