Plot3D Ticks -- How to get the values?
- To: mathgroup at smc.vnet.net
- Subject: [mg49796] Plot3D Ticks -- How to get the values?
- From: saveez at hotmail.com (Ali)
- Date: Sun, 1 Aug 2004 04:09:59 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Hey,
If you try to get the values of ticks for a 2D plot its easy:
AbsoluteOptions[Plot[Sin[x], {x, 0, Pi}], Ticks]
gives:
{Ticks -> {{}, {}}}
But the same thing for Plot3D always returns automatic instead of
values
AbsoluteOptions[Plot3D[Sin[x + y], {x, 0, Pi}, {y, 0, Pi}], Ticks]
gives:
{Ticks -> Automatic}
Any idea how to overcome this, or any better ideas to extract the tick
values from Plod3D?