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

You can customize the task text/HTML using onBeforeTaskRender:

config: any = {
  onBeforeTaskRender: args => {
    args.data.box.html = args.data.text;   // displays task text instead of percentage in the box
  }
}

See also:
https://doc.daypilot.org/gantt/task-customization/

This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.