nabil6391 / graphview

Flutter GraphView is used to display data in graph structures. It can display Tree layout, Directed and Layered graph. Useful for Family Tree, Hierarchy View.
MIT License
427 stars 120 forks source link

[Bug] TreeEdgeRenderer can't highlight paint to parent properly #90

Open 0xNF opened 2 years ago

0xNF commented 2 years ago

Using the sample from the README, and with algorithm: BuchheimWalkerAlgorithm(builder, TreeEdgeRenderer(builder)), I am trying to highlight the path from node to topmost parent. Because juncture points in a tree edge are associated with the last-drawn node, the full path can't be highlighted correctly, resulting in this situation:

image

nabil6391 commented 1 year ago

So I assume you want the color to go from Node 6 to 8 as well right?

Can you share your code