gpt4 book ai didi

cytoscape.js - 用户移动节点后,如何在 Dash/Cytoscape 中找到节点的位置?

转载 作者:行者123 更新时间:2023-12-05 05:11:26 24 4
gpt4 key购买 nike

我在 Plotly/Dash 中使用 Cytoscape,我正在创建一个简单的图表。然后我将几个节点移动到不同的位置。然后我尝试在 Dash 回调中读取这些位置 - 我已经尝试过:

  • State("cytoscape-graph", "stylesheets")
  • State("cytoscape-graph", "layout")
  • State("cytoscape-graph", "elements")
  • 或多或少我能找到的任何东西in the docs here

示例节点:

{'data': {'id': 'id0', 'label': 'Node 0'}, 'position': {'x': 50, 'y': 150}},
{'data': {'id': 'node1', 'label': 'Node 1'}, 'position': {'x': 200, 'y': 100}},
{'data': {'id': 'node2', 'label': 'Node 2'}, 'position': {'x': 200, 'y': 200}},
{'data': {'source': 'node0', 'target': 'node1', 'id': '4300352b-9533-4fef-90ec-7a5cbff1f8c4'}},
{'data': {'source': 'node1', 'target': 'node2', 'id': '33d4c841-bcfc-4a07-ac56-90d36982601a'}},
}

以上要么返回None,要么返回不包含相关信息的任何其他内容,要么返回初始节点位置。我试着查看呈现的源代码,但我似乎无法在那里找到信息;只有一个 canvas 元素。即使对于 Javascript 后端,我也会很感激。

最佳答案

编辑:似乎 Dash 不允许直接访问 ...elements().jsons() 所以问题的答案是纯粹使用 Dash 可能是不可能的。每次单击节点时,您可能必须编写回调以在 javascript 中运行它并将其输出到某个隐藏的 div,然后在 Dash 中读取它。~感谢 OP 回答了这个问题

正如本 section 中指出的那样的文档,很容易实现。 cy.elements()/nodes()/edges().jsons() 方法获取集合中所有指定元素的纯 JavaScript 对象表示的数组。

var json;
var cy = (window.cy = cytoscape({
container: document.getElementById("cy"),

boxSelectionEnabled: false,
autounselectify: true,

style: [{
selector: "node",
css: {
content: "data(id)",
"text-valign": "center",
"text-halign": "center",
height: "60px",
width: "100px",
shape: "rectangle",
"background-color": "data(faveColor)"
}
},
{
selector: "edge",
css: {
"curve-style": "bezier",
"control-point-step-size": 40,
"target-arrow-shape": "triangle"
}
}
],

elements: {
nodes: [{
data: {
id: "Top",
faveColor: "#2763c4"
}
},
{
data: {
id: "yes",
faveColor: "#37a32d"
}
},
{
data: {
id: "no",
faveColor: "#2763c4"
}
},
{
data: {
id: "Third",
faveColor: "#2763c4"
}
},
{
data: {
id: "Fourth",
faveColor: "#56a9f7"
}
}
],
edges: [{
data: {
source: "Top",
target: "yes"
}
},
{
data: {
source: "Top",
target: "no"
}
},
{
data: {
source: "no",
target: "Third"
}
},
{
data: {
source: "Third",
target: "Fourth"
}
},
{
data: {
source: "Fourth",
target: "Third"
}
}
]
},
layout: {
name: "dagre"
}
}));
cy.ready(function() {
console.log('Nodes:', cy.nodes().jsons());
console.log('Edges:', cy.edges().jsons());
console.log('Elements:', cy.elements().jsons());
});

document.getElementById('save').addEventListener('click', function() {
json = cy.json();
});
document.getElementById('load').addEventListener('click', function() {
cy.json(json);
});
body {
font: 14px helvetica neue, helvetica, arial, sans-serif;
}

#cy {
height: 85%;
width: 100%;
float: right;
position: absolute;
}
<html>

<head>
<meta charset=utf-8 />
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
<script src="https://unpkg.com/cytoscape@3.3.0/dist/cytoscape.min.js">
</script>
<!-- cyposcape dagre -->
<script src="https://unpkg.com/dagre@0.7.4/dist/dagre.js"></script>
<script src="https://cdn.rawgit.com/cytoscape/cytoscape.js-dagre/1.5.0/cytoscape-dagre.js"></script>
</head>

<body>
<b id="save" style="cursor: pointer; color: darksalmon">Save graph</b> / <b id="load" style="cursor: pointer; color: darkmagenta">Load graph</b>
<div id="cy"></div>
</body>

</html>

关于cytoscape.js - 用户移动节点后,如何在 Dash/Cytoscape 中找到节点的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55444768/

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