2
使用Sigma.js我想將自定義圖像添加到圖形的節點。我發現a plugin,包括nodeShapes.js和plotter.js,然後添加圖像屬性:將自定義圖像添加到節點
var imgUri="somepicture.png"
sigInst.addNode(id,{
'x': Math.random(),
'y': Math.random(),
'label': data.nodes[i].val,
// 'color': color, commenting this line out to add custom images to the nodes
'image':{'url':imgUri},
'cluster': clusters['cluster_id']
});
但圖形保持不變,我仍然看到默認的點。
你是否設法讓這個工作? – CodeGuru