1
我有如何在Cytoscape.JS節點內容中設置多個文本行?
style: cytoscape.stylesheet()
.selector('node')
.css({
'border-color': '#0266C8',
'border-width' : '1px',
'shape': 'data(faveShape)',
'width': '80px',
'font-family' : 'Consolas',
'font-size' : '10px',
'content': 'data(id)',
'text-valign': 'center',
'background-color': 'data(faveColor)',
'color': 'data(textColor)'
})
...
一些Cytoscape的節點我怎麼能有兩個或兩個以上線路和2名或多個連接的字符串內容?
...
'content': 'data(id)' + '<br>' + data('name') + '<br>test123',
...
TIA
好了不要忘了讓'光標:pointer'工作,也許給我們移動鼠標一個氣球提示。 –