Pending Review
Last Updated: 25 Sep 2025 21:00 by Mark
Created by: Mark
Comments: 0
Category: Gantt
Type: Feature Request
0

The Gantt desperately needs a way to position the title somewhere other than inside bar. Other Gantt charts I have used will allow you to place the title to the right of the bar so the title is still displayed in its entirety regardless of the pixel size of the rendered task bar.

Other kendo charts already allow similar configuration options. I have tried using the taskTemplate and css which I can get to show on the screen just below the bar however the title is then not visible in the pdf view.

, taskTemplate: function (task) {
    // move label just below and to the far right of the task bar
    return '<span class="task-label" style="position:absolute; right:0; color:#000;">' + task.title + '</span>';
}

Please advise.