link_description

указывает текст в заголовке окна подтверждения удаления ссылки

linkobjectобъект ссылки

Example

gantt.templates.link_description = function(link){
    const from = gantt.getTask(link.source);
    const to = gantt.getTask(link.target);
    const types = gantt.config.links;
 
    const from_start = link.type == types.start_to_start;
    const to_start = link.type == types.finish_to_start ||  
                    link.type == types.start_to_start;
    return `От <b>${from.text}</b> ${(from_start?"Начало":"Конец")}<br/>
К <b>${to.text}</b> ${(to_start ? "Начало" : "Конец")}<br/>`;
};

See also
К началу