Re: Frameticks
- To: mathgroup at smc.vnet.net
- Subject: [mg31057] Re: [mg31031] Frameticks
- From: BobHanlon at aol.com
- Date: Sat, 6 Oct 2001 03:32:27 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 2001/10/5 2:29:38 AM, bernd at bio.vu.nl writes:
>When Frameticks are given the left and right axes display the same
>ticks differently.
>The Left axis does not display the first tick, and the right axis does
>not display the last tick.
>
>ListPlot[Range[1, 19], Frame -> True,
> FrameTicks -> {Range[0, 20, 5], Range[0, 20, 5], None, Range[0, 20, 5]},
>
> PlotRange -> {0, 20}]
>
>gives left ticks from 5 to 20 (inclusive) and right ticks from 0 to 15.
>
>How can i get Mathematica to display the tickmarks i ask for (i.e. 0 to
>20)?
>
ListPlot[Range[1,19],
Frame->True,
FrameTicks->{Range[0,20,5],Range[0,20,5],None,Range[0,20,5]},
PlotRange->{{-1, 21}, {-1, 21}}];
Bob Hanlon
Chantilly, VA USA