JuliaGraphs / GraphPlot.jl

Graph visualization for Julia.
http://JuliaGraphs.github.io/GraphPlot.jl/
Other
201 stars 62 forks source link

Pleasa add option to change size #147

Closed majsterkovic closed 4 months ago

majsterkovic commented 3 years ago

gplot(g, size = (600, 800))
hdavid16 commented 3 years ago

You could also set the size when saving the plot using draw (https://github.com/JuliaGraphs/GraphPlot.jl#save-to-figure)

hdavid16 commented 2 years ago

Alternately, could potentially update the gplot Compose object so that the UnitBox is set by size. Haven't tested this though.

hdavid16 commented 2 years ago

see #133

hdavid16 commented 1 year ago

@majsterkovic you can use GraphMakie, where you can set the size of your plot using Makie (e.g., Figure(resolution = (600, 800)))

etiennedeg commented 4 months ago

Closed by #186