我使用 cytoscape.js 来显示节点之间的关系。
我想为一个节点创建不同的时尚标签。
我想要更复杂的时尚标签,然后在 cytoscape.org official example 中。
我该怎么做?
我的问题的示例图像:
最佳答案
我解决了为 cytoscape 创建 html 标签的扩展问题。
github上的扩展:cytoscape-node-html-label
扩展演示:demo
cy.nodeHtmlLabel(
[
{
query: 'node',
tpl: function(data){
return '<p class="line1">line 1</p><p class="line1">line 2</p>'}
}
]
);
.line1{
font-size: 10px;
}
.line1{
font-size: 12px;
}
关于javascript - 如何将 html 标签添加到 cytoscape 图节点,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45658912/