removeLinkLayer
info
This functionality is available in the PRO edition only.
Description
Removes the specified layer related to a link
removeLinkLayer: (layerId: string | number) => void
Parameters
layerId- (required) string | number - a DOM element that will be displayed in the layer
Example
let linkLayer = null;
gantt.attachEvent("onGanttReady", function () {
const link_types = ["FS", "SS", "FF", "SF"]
linkLayer = gantt.addLinkLayer(function (link) {
const node = gantt.getLinkNode(link.id);
if (node){
const el = document.createElement('div');
el.className = 'link_layer';
el.style.left = (node.childNodes[2].offsetLeft + 20) + 'px'
el.style.top = (node.childNodes[2].offsetTop - 6) + 'px'
el.innerHTML = link_types[link.type];
return el;
}
return false;
});
});
gantt.removeLinkLayer(linkLayer);