I'm trying to draw edges in a sigma.js graph DOTTED and CURVED.
I'm using customEdgeShapes and curve plugins but I cannot combine two different styles in the same edge.
In fact I can only apply a single style to the type attribute:
edge.type = 'curvedArrow';
or
edge.type = 'dotted';
How can I apply both styles to an edge?