strathausen / dracula

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

Small fix for arrows. #90

Open miracl3ministry opened 1 year ago

miracl3ministry commented 1 year 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 }, });