You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there an easy way to maybe pass a flag to the graph, that if you had an edge x -> y and an edge y -> x it would be drawn as single double-headed edge, rather than two edges?
Also, is there a possibility to label edges with text?
Or do I have to provide whole EdgePaintBuilder/EdgePathBuilder, which seems rather complicated?
The text was updated successfully, but these errors were encountered:
@Dragemil
For <-> sounds reasonable. It's not to hard to implement via some kind of edges "merge", but currently not available.
About labels on edges:
Because widget is built on top of custom painter, it's hard to implement this feature - you need to handle edges size and graph orientation properly to centralise your text and avoid overlaps.
I have React.js version of this lib which uses SVG rendering. This version has edge labels implemented by some other guy, but I'm not satisfied with the result. If you want to make your contribution, please do so.
I had plan for version 1.0.0 with new type of matrix (with 2 cells per 1 object instead of 1), but for now I don't have time to work on this.
Is there an easy way to maybe pass a flag to the graph, that if you had an edge x -> y and an edge y -> x it would be drawn as single double-headed edge, rather than two edges?
Also, is there a possibility to label edges with text?
Or do I have to provide whole
EdgePaintBuilder
/EdgePathBuilder
, which seems rather complicated?The text was updated successfully, but these errors were encountered: