MathGroup Archive 2004

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

Search the Archive

Re: gridlines styles.

  • To: mathgroup at smc.vnet.net
  • Subject: [mg51711] Re: [mg51671] gridlines styles.
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Sat, 30 Oct 2004 03:47:55 -0400 (EDT)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

For info use:  ?GridLines

Needs["Graphics`"];

 Plot[Sin[x], {x, 0, 2Pi}, 
    FrameTicks->
      {PiScale,Automatic,None, Automatic},
    GridLines -> 
      {{First[#],
              {Red, AbsoluteDashing[{5,5}]}}&/@
          PiScale[0, 2Pi], 
        Table[{y, 
            {Blue, AbsoluteDashing[{5,5,2,5}]}},
          {y,-1,1,.5}]},
    Frame->True,Axes->False];


Bob Hanlon

> 
> From: sean kim <sean_incali at yahoo.com>
To: mathgroup at smc.vnet.net
> Date: 2004/10/29 Fri AM 03:38:47 EDT
> To: mathgroup at smc.vnet.net
> Subject: [mg51711] [mg51671] gridlines styles.
> 
> i always get baffled at things like this. 
> 
> from the help menu... 
> 
> "Grid line styles can involve graphics directives such
> as RGBColor and Thickness"
> 
> k. fine. 
> Plot[Sin[x], {x, 0, 2Pi}, GridLines -> Automatic]
> Plot[Sin[x], {x, 0, 2Pi}, GridLines -> Automatic, 
>   GridLinesStyle -> RGBColor[0, 1, 1]]
> 
> Apparently GridLinesStyle is not the options.
> 
> hm. how can Mathematica set the option for Grid Lines Style if
> not GridLinesStyle? 
> 
> 
> any insights will be greatly appreciated.]
> 
> 
> sean
> 
> 
> 
> 
> 
> 
> 
> 		
> __________________________________
> Do you Yahoo!?
> Yahoo! Mail Address AutoComplete - You start. We finish.
> http://promotions.yahoo.com/new_mail 
> 
> 


  • Prev by Date: Re: Converting Mathematica to MS Word
  • Next by Date: Re: Re: Another bizarre phenomenon
  • Previous by thread: Re: gridlines styles.
  • Next by thread: Re: gridlines styles.