gpt4 book ai didi

jsplumb - 如何从jsplumb中的源端点建立多个连接

转载 作者:行者123 更新时间:2023-12-04 08:45:32 28 4
gpt4 key购买 nike

我正在尝试使用 jsplumb 库制作流程图。我需要从单个 div 建立多个连接。 Ex- Div 1 应该连接到 Div 2 和 Div 3。我希望源端点相同,即底部中心。请让我知道应该怎么做才能完成这项工作
谢谢!

最佳答案

对于目标端点,将其设置为全局以建立无限制的连接:

  var targetEndpoint = {
endpoint: "Dot",
paintStyle: { fillStyle: "blue", radius: 7 },
hoverPaintStyle: endpointHoverStyle,
maxConnections: -1,
dropOptions: { hoverClass: "hover", activeClass: "active" },
isTarget: true,
overlays: [["Label", { location: [0.5, -0.5], label: "", cssClass: "endpointTargetLabel" }]]
};

对于源端点将其设置为全局以建立无限连接:
var sourceEndpoint = {
endpoint: "Dot",
paintStyle: {
strokeStyle: "green", fillStyle: "green", radius: 3, lineWidth: 1
},
isSource: true,
maxConnections: -1,
connector: ["Flowchart", { stub: [40, 60], gap: 10, cornerRadius: 5, alwaysRespectStubs: true }],
connectorStyle: connectorPaintStyle, hoverPaintStyle: endpointHoverStyle, connectorHoverStyle: connectorHoverStyle,
dragOptions: {},
overlays: [["Label", { location: [0.5, 1.5], label: "", cssClass: "endpointSourceLabel", }]]
};

关于jsplumb - 如何从jsplumb中的源端点建立多个连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11992720/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com