Producing ticks on left axis with axis labels
- To: mathgroup at smc.vnet.net
- Subject: [mg38073] Producing ticks on left axis with axis labels
- From: Vince Boros <borosv at itee.uq.edu.au>
- Date: Thu, 28 Nov 2002 14:10:00 -0500 (EST)
- Organization: The University of Queensland, Australia
- Sender: owner-wri-mathgroup at wolfram.com
When I plot a graph with the following FrameTicks specification:
FrameTicks ->
{
Automatic,
{
{-\[Pi], "-\[Pi]", {0.01, 0}, {AbsoluteThickness[1.5]}}
},
Automatic,
{
{-\[Pi], "-\[Pi]", {0.01, 0}, {AbsoluteThickness[1.5]}}
}
}
the tick to the right of the -Pi label on the left axis does not appear.
The only way I can make it appear in Mathematica is with:
FrameTicks ->
{
Automatic,
{
{-\[Pi], "-\[Pi]", {0.01, 0}, {AbsoluteThickness[1.5]}},
{-\[Pi], "", {0.01, 0}, {AbsoluteThickness[1.5]}}
},
Automatic,
{
{-\[Pi], "-\[Pi]", {0.01, 0}, {AbsoluteThickness[1.5]}}
}
}
where I have repeated the frametick line but omitting the -Pi label.
I'm using Mathematica 4.1.1.0 on Windows XP.
Vince Boros