MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

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


  • Prev by Date: Re: ContourPlot3D and mapping
  • Next by Date: Add new option to Notebook[]
  • Previous by thread: Re: GridLines
  • Next by thread: Re: GridLines