Re: ticks but no numbers on the axes
- To: mathgroup at smc.vnet.net
- Subject: [mg126462] Re: ticks but no numbers on the axes
- From: "djmpark" <djmpark at comcast.net>
- Date: Sat, 12 May 2012 04:54:31 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <13330996.4498.1336710415338.JavaMail.root@m06>
With the CustomTicks and NoTickLabels functions in the Presentations
Application this is easy.
<< Presentations`
xticks = CustomTicks[Identity, {0, 2 \[Pi], \[Pi]/4, 4}];
yticks = CustomTicks[Identity, {-1, 1, 0.5, 5}];
Plot[Sin[x], {x, 0, 2 \[Pi]},
Frame -> True,
FrameTicks -> ({{yticks, yticks}, {xticks, xticks}} // NoTickLabels)]
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/index.html
From: Darau, M. [mailto:M.Darau at tue.nl]
Hello,
Is it possible to have a plot with no numbers on the axes, and this while
keeping the ticks? I know that "Ticks->None" in a plot, removes both ticks
and tick-labels.
Thanks!
Mirela