In a Plot (actually, a Graphics) command, I'd like to make the actual tick marks larger than they are, but I can't find an option to do that. Is there a way?
|
|
||||
|
As others notes, if you manually give the ticks specification, it's easy to specify sizes for ticks. But then you need to generate all tick mark positions, including small and big marks, yourself. Unfortunately, I have never found a way to reliably retrieve the automatically generated ticks specification. While @J.M.'s answer tries to do this, you'll notice that An often recommended alternative is using the CustomTicks package (I learned about it from @Eli and @R.M.). It is also part of LevelScheme, so I recommend you install the latest version of LevelScheme instead. This package will spare you the pain of implementing your own tick-generator functions. This is how you could use it:
Increase the tick sizes generated by the
Documentation for the package is here. |
|||
|
|
Start with
Then, to increase the tick size, try the following:
A similar thing can be done if you're using frames ( |
|||||||||||||||
|
|
From belisarius' comment above:
|
||||
|







Ticks(FrameTicksif you're using frames instead of axes)? Check the tick mark option settings. – 0x4A4D♦ May 25 '12 at 18:54FrameTicks, but unfortunately that does not seem to work unless I'm using frames (which I cannot in this application). – rogerl May 25 '12 at 18:58