RE: GridLines at each Tickmark
- To: mathgroup at smc.vnet.net
- Subject: [mg31799] RE: [mg31773] GridLines at each Tickmark
- From: "David Park" <djmp at earthlink.net>
- Date: Sun, 2 Dec 2001 04:25:29 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Ryan,
Here is one method for creating a piece of graph paper.
Needs["Graphics`Colors`"]
ticks = Table[i, {i, -10, 10, 2}];
grids = Table[{i, {LightBlue}}, {i, -10, 10, 2}];
Show[Graphics[{}], AspectRatio -> Automatic,
PlotRange -> {{-10, 10}, {-10, 10}}*1.000001,
Frame -> True, FrameTicks -> {ticks, ticks, None, None},
GridLines -> {grids, grids}, Background -> Linen,
ImageSize -> 400];
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/
> From: Ryan R. Rosario [mailto:rrosario11 at my-deja.com]
To: mathgroup at smc.vnet.net
>
>
> Hey -
>
> How can I get Mathematica to draw gridlines at each tickmark on a 2D
> plot without having to manually input each point? I am trying to
> create a "graph paper like" grid. Is this possible?
>
> Thanks,
> Ryan
>