We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I'm wondering if there is a deliberate reason why axis.ticks.length exists but you can't customize it for the X and Y axes?
axis.ticks.length
If I want to have long tickmarks on the Y axis but very short ones on the X, it feels like this should be possible.
ggplot(mtcars, aes(wt, mpg)) + geom_point() + theme(axis.ticks.length.x = unit(2, "cm"), axis.ticks.length.y = unit(2, "mm"))
The text was updated successfully, but these errors were encountered:
I'd be willing to review a PR, but it's sufficiently low priority that I'm unlikely to ever implement myself.
Sorry, something went wrong.
No branches or pull requests
I'm wondering if there is a deliberate reason why
axis.ticks.length
exists but you can't customize it for the X and Y axes?If I want to have long tickmarks on the Y axis but very short ones on the X, it feels like this should be possible.
The text was updated successfully, but these errors were encountered: