MathGroup Archive 2005

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

Search the Archive

Re: Re: Setting gridlines thickness in Plot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg59757] Re: [mg59746] Re: Setting gridlines thickness in Plot
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Sat, 20 Aug 2005 03:13:46 -0400 (EDT)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

The Help browser provides the form for gridlines with specified styles as

{{x1, style1}, ...}

Plot[x,{x,0,10},
    PlotStyle->{Green,AbsoluteThickness[3]},
    GridLines->{Table[
          {x,{Red, AbsoluteThickness[2],
              AbsoluteDashing[{10,5,2,5 }]}},
          {x,1,9,2}],
        Table[
          {y,{Blue, AbsoluteThickness[2],
              AbsoluteDashing[{10,5,2,5 }]}},
          {y,1,9,2}]},
    Frame->True];


Bob Hanlon

> 
> From: carlos at colorado.edu
To: mathgroup at smc.vnet.net
> Date: 2005/08/19 Fri AM 04:32:36 EDT
> Subject: [mg59757] [mg59746] Re: Setting gridlines thickness in Plot
> 
> I tried this method and it doesnt work at all.  Since there is no
> documentation on the subject [neither the inline help nor the
> Mathematica Book covers it]  it is difficult to know what is
> gone wrong.   Apparently it is an undocumented interaction of
> RGBColor and Gridlines directives.
> 
> 


  • Prev by Date: Re: Bar Chart lablels
  • Next by Date: Re: How to free memory?
  • Previous by thread: Re: Setting gridlines thickness in Plot
  • Next by thread: Re: Re: Setting gridlines thickness in Plot