search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Gantt Chart - Using icon indicator in column

Asked by Mikhail
7 years ago.

Is it possible to use icons indicators in columnes in gantt chart control?

Answer posted by Dan Letecky [DayPilot]
7 years ago.

Yes, you can customize the column HTML using BeforeTaskRender event handler:
http://doc.daypilot.org/gantt/task-customization/

void DayPilotGantt1_BeforeTaskRender(object sender, BeforeTaskRenderEventArgs e)
{
  e.Row.Columns[0].Html = "<img src='image.png'/>";
}
This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.