Reputation: 27
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
Reputation: 531
add below style to edge style in js code:
'curve-style': 'bezier',
'target-arrow-shape': 'triangle',
Upvotes: 2