Hiroki Kondo
Hiroki Kondo

Reputation: 27

How to set simple arrow shape to edge with cytoscape.js?

I'd like to set arrow shape like '->' to edges with cytoscape.js.

Is there are any way to set it? or can I set the shape by extension?

Upvotes: 1

Views: 1689

Answers (1)

user2352554
user2352554

Reputation: 531

add below style to edge style in js code:

'curve-style': 'bezier',
'target-arrow-shape': 'triangle',

Upvotes: 2

Related Questions