-
-
Notifications
You must be signed in to change notification settings - Fork 358
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
[FR] Ability to resize the arrow heads in e.g. quiver plots #4881
Comments
I really suggest this |
You are welcome to open a PR 🙂 |
It seems to me that |
True, but that is only used, if the backend supports the @recipe function f(::Type{Val{:quiver}}, x, y, z) # COV_EXCL_LINE
@nospecialize
if :arrow in supported_attrs()
quiver_using_arrows(plotattributes)
else
quiver_using_hack(plotattributes)
end
()
end which GR currently does not: Plots.jl/PlotsBase/ext/GRExt.jl Line 25 in da79316
That is why it uses the other implementation |
I have been trying to figure out how to do this (trying tons of various options), but currently does not seem to be possible in Plots.
It would be useful to be able to resize the arrowheads in e.g. quiver plots. E.g. for
Especially when the arrow lines are small, the arrowheads looks really weird and ugly.
The text was updated successfully, but these errors were encountered: