JsPlumb 连接线和锚点作为三角形失败
JsPlumb connector lines and anchor as triangle fails
我在当前的项目中使用 JsPlumb,目前遇到 2 个小问题,希望有人能帮助我解决。
var anEndpointDestination = {
Connector: ["Straight"],
anchor: ["Perimeter", { shape: "Diamond" }],
endpoint: "Dot",
maxConnections: -1,
isSource: false,
isTarget: true,
anchor: [0.96, 0.2, 1, 0, 0, -25],
paintStyle: { fillStyle: "blue" }
};
我无法正常工作的第一件事是,锚点之间的 Connector line
进入 zig/zag 路径,就像 demo.
第二个问题是我的 anchor
没有从 anchor: ["Perimeter", { shape: "Diamond" }]
得到菱形
提前致谢
对于 zig/zag 路径,我相信您需要使用 Flowchart 连接器。更多信息 here
我在当前的项目中使用 JsPlumb,目前遇到 2 个小问题,希望有人能帮助我解决。
var anEndpointDestination = {
Connector: ["Straight"],
anchor: ["Perimeter", { shape: "Diamond" }],
endpoint: "Dot",
maxConnections: -1,
isSource: false,
isTarget: true,
anchor: [0.96, 0.2, 1, 0, 0, -25],
paintStyle: { fillStyle: "blue" }
};
我无法正常工作的第一件事是,锚点之间的 Connector line
进入 zig/zag 路径,就像 demo.
第二个问题是我的 anchor
没有从 anchor: ["Perimeter", { shape: "Diamond" }]
提前致谢
对于 zig/zag 路径,我相信您需要使用 Flowchart 连接器。更多信息 here