-
Notifications
You must be signed in to change notification settings - Fork 14
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
Capture par arguments in axis call(s) #456
Comments
I have gone back and forth on where these args should end up, and am suggesting that the are isolated w/ This is the expected behavior as I see it, but this is up for discussion. |
Actually just noticed your comment in #437, #437 (comment). So I agree with you. Arguments affecting axes should not be able to be called in # base doesn't work
plot(1,2)
points(1,20000, log='y')
Warning message:
In plot.xy(xy.coords(x, y), type = type, ...) :
"log" is not a graphical parameter
# gsplot does work
gsplot() %>% points(1,20000, log='y') |
for your first comment, no I wasn't saying that the Second comment: I disagree, you should be able to modify side properties within a points call and that should all work now (for example, you could put |
Wow, I interpreted all of that very incorrectly. So what is meant by "don't bubble up into the |
yeah, my comment about bubbling up is confusing. I was only referring to the args when they are within |
Closed by #459 |
related to #437 , but this issue covers the axis call ignoring the
option.args
given by the user that should influence the rendering of the axis. For example:ignores the
tcl
argumentThe text was updated successfully, but these errors were encountered: