We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hi! I want to add spines to my Gadfly plots, as a sort of theme. is there any way around passing the last two lines every time I make a plot?
spines = [Geom.vline(color="light gray", size=0.5mm), Geom.hline(color="light gray", size=0.5mm)] plot(data, x=:t, y=:output, Geom.line, xintercept=[0.0], yintercept=[0.0], spines...)
I am sort of asking if I can somehow use push_theme to achieve this. thanks!
push_theme
The text was updated successfully, but these errors were encountered:
Not via Theme, but you can simplify the above plot by defining a layer first:
Theme
layer0 = layer(xintercept=[0.0], yintercept=[0.0], Geom.vline(color="light gray", size=0.5mm), Geom.hline(color="light gray", size=0.5mm)) plot(..., layer0)
Sorry, something went wrong.
👍 thank you!
No branches or pull requests
hi!
I want to add spines to my Gadfly plots, as a sort of theme. is there any way around passing the last two lines every time I make a plot?
I am sort of asking if I can somehow use
push_theme
to achieve this. thanks!The text was updated successfully, but these errors were encountered: