There is any way to hide complete percentage label in a Task element or, at least, remove '%' character?
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/