Facegrids at ticks
- To: mathgroup at smc.vnet.net
- Subject: [mg125731] Facegrids at ticks
- From: João André <jpcgandre at gmail.com>
- Date: Fri, 30 Mar 2012 04:36:00 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
Dear All,
I want to plot a 3D graphic and I want gridlines at the ticks that I specify. I've tried several solutions but I cannot get this working. The result with the code provided below is that it does its job except in the x-axis where he only draws a gridline at the middle coordinate (and not in all ticks).
Any advice is most welcome.
Here is my code:
Plot3D[exp[R, bn, 50], {R, 2, 100}, {bn, 1, 5},
AxesStyle -> Thickness[0.005],
Ticks -> {{2, 10, 20, 30, 50, 100}, {1, 2, 3, 4, 5}, {0.5, 1.0,
1.5, 2.0, 2.5}}, Boxed -> False,
Mesh -> {{0, 2, 5, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100}, {1,
1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5}}, PerformanceGoal -> "Quality",
FaceGrids -> All];
Kind regards,
Jo=E3o