-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have IJulia honor set_default_plot_format #1529
Comments
There's an example on Julia Discourse of one way to enable using Gadfly
import Base.Multimedia as mltm
# display stack:
mltm.display
3-element Vector{AbstractDisplay}:
TextDisplay(Base.TTY(Base.Libc.WindowsRawSocket(0x0000000000000278) open, 0 bytes waiting))
Gadfly.GadflyDisplay()
IJulia.InlineDisplay() as does VScode. Gadfly shouldn't override those displays by default e.g. see #1311. You may have to |
Thanks for the link, I couldn't figure out how to make I was expecting something like in Plots.jl, where you can do It seems that Plots.jl does it by overloading |
I can't tell from your posts if you have found (for a specific Gadfly plot): p = plot(...)
draw(PNG(8inch, 8inch), p) |
Yes, in IJulia I'm currently using |
It would be nice if
set_default_plot_format(:png)
was working in IJulia. Not sure if this is a bug or feature request.The text was updated successfully, but these errors were encountered: