RE: Grid
- To: mathgroup at smc.vnet.net
- Subject: [mg31145] RE: [mg31138] Grid
- From: "David Park" <djmp at earthlink.net>
- Date: Sat, 13 Oct 2001 02:47:10 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`Colors`"] xgrids = Table[{x, {DarkGoldenrod}}, {x, -3, 3}]; ygrids = Table[{y, {DarkGoldenrod}}, {y, 0, 20, 5}]; Plot[Exp[-x] - x, {x, -3, 3}, Frame -> True, Axes -> False, GridLines -> {xgrids, ygrids}]; David Park djmp at earthlink.net http://home.earthlink.net/~djmp/ > From: LuisMa [mailto:nospam at newsranger.com] To: mathgroup at smc.vnet.net > > The grid lines are by default colored light blue. How can I > change this color?. > For example in the plot: > > Plot[Exp[-x]-x, {x,-3,3},GridLines->Automatic,Frame->True] > > Thanks. > >