JuliaPlots/GraphRecipes.jl

Arrows Not Showing Up in DiGraph

dimitrip13 opened this issue · 2 comments

Details

I copied and pasted the exact example code and the graph that showed up didn't have any arrows. It may or may not make a difference that it was in a jupyter notebook

using GraphRecipes, Plots
g = [0 1 1;
0 0 1;
0 1 0]

graphplot(g, names=1:3, curvature_scalar=0.1)

Backends

This bug occurs on ( insert x below )

Backend yes no untested
gr (default) x
pyplot x
plotly x
plotlyjs x
pgfplotsx x
inspectdr x

Versions

Plots.jl version: last updated 10/9/20
Backend version (]st -m):
Output of versioninfo():
image

This is fixed in #128

If you check out master, then you will get the correct behaviour.

Seems to work for gr and pyplot but not for plotly and plotlyjs. Did not test inspectdr and pgfplotsx.

using GraphRecipes, Plots
graphplot([0 1 1; 0 0 1; 0 1 0], names=1:3)