Answer:
Yes, it is possible to customize the columns using the template like in Grid. Please find the below code example.
<SfGantt DataSource="@TaskCollection"> <GanttColumn Field="@nameof(TaskData.TaskName)" AllowSorting> @((context as TaskData).TaskName) |
Find the sample to add a custom template in Blazor Gantt Chart from
here.