-
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
Provide a way to draw tick marks #328
Comments
It's definitely something that should be added. I like the default look without ticks, but there should be an option add them. |
I'd actually be interest in having a look at implementing some of the features I am missing myself. However, I find it kind of hard to navigate the Gadfly codebase... Where do things like drawing gridlines, drawing the legend etc. happen? It shouldn't be hard to draw ticks if a certain theme variable is set. It also shouldn't be hard to not draw the legend, if a certain variable is set. |
It's definitely not easy to navigate. Grid lines, labels, keys, etc, are all considered guides. They're defined in src/guide.jl. The guide that drawn gridlines and their labels is The Let me know if you get stuck on anything. |
Cool, I have a look. I have also noticed that the gridlines are somehow drawn above the panel's border. Thus, when setting Thanks for the hints. |
I agree that the grid lines should be under the border. The issue is that the border is drawn by just stroking the background rectangle in a different color, and the background of course under the grid lines, so I should add a separate border rectangle that's above everything. |
Hi all, I just started working with Julia. I would need ticks marks without grid lines and up to date it seems this was not implemented. Any of you can help me? |
I like the ggplot approach taken by Gadfly. However, I dearly miss the ability to draw tick marks on my axes. For my publication purposes, I am required to not show grid lines and instead draw tick marks on the axes. Is there a specific reason they are missing at the moment?
The text was updated successfully, but these errors were encountered: