strathausen / dracula

JavaScript layout and representation of connected graphs.
https://www.graphdracula.net
MIT License
836 stars 132 forks source link

Small fix for arrows. #90

Closed miracl3ministry closed 2 months ago

miracl3ministry commented 2 years ago

The example in the documentation does't display directed arrows. Doesn't work: g.addEdge("Banana", "Tomato", { directed: true, style: { label: "1" }, }); But it works: g.addEdge("Mushroom", "Tomato", { directed: true, }); g.addEdge("Banana", "Tomato", { style: { label: "1", directed: true }, });

strathausen commented 2 months ago

Thanks!