Hi Luis,
We have created a sample in which we have prevented the connector source Point from establishing a connection in BPMN End event using connectorSourceChange event. Please refer to the code example, help documentation and playground link.
Code example:
$("#diagram").ejDiagram({
connectorSourceChange: connectorSourceChange,
});
function connectorSourceChange(args) {
//when an node is BPMN end event, cancel the connection
if (args.node && args.node.event === "end") {
args.cancel = true;
}
}
Regards,
Shyam G