 
 
 
 
 
 
Re: GridLines
- To: mathgroup at smc.vnet.net
- Subject: [mg55262] Re: GridLines
- From: Steve Gray <stevebg at adelphia.net>
- Date: Thu, 17 Mar 2005 03:31:31 -0500 (EST)
- References: <d1940s$nom$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Thanks to help from several people, I have this working, which gives light blue grid lines.
LightBlue can be any of the hundreds of named colors, or any of the other color specs.
 Show [ grlin, grver, grint, tex1,
  	   Frame -> True,
  	   ImageSize -> 500,
  	   Background -> Linen,
  	   GridLines -> { Table[{i, {LightBlue}}, {i, -10, 10}],    (* Vert. grid lines *)
      			Table[{i, {LightBlue}}, {i, -20, 20}]},   (* Hori. grid lines *)
  	   AspectRatio -> Automatic
          ] ;                                      (*  Later displayed items hide earlier ones.*)
 
The args to Show are various things of the Graphics[ ] type.
Steve Gray

