Re: Re: Re:Color of GridLines
- To: mathgroup at smc.vnet.net
- Subject: [mg20788] Re: [mg20716] Re: Re:[mg20635] Color of GridLines
- From: Arnold Seiken <seikena at union.edu>
- Date: Thu, 11 Nov 1999 00:22:55 -0500
- Sender: owner-wri-mathgroup at wolfram.com
Jan,
You must load the Graphics`Graphics` package first before
you can use LogListPlot. The following should work:
Needs["Graphics`Graphics`"]
expdata=Table[{x, .92 10^(.94 x) + Random[Real,
{-1.0, 1.0}]}, {x,0.2,0.7,.1}];
LogListPlot[expdata,
GridLines->{Table[{k, {Thickness[0.012], Hue[k-0.2]} }, {k,0.2, 0.7,
0.1}],
None}]
A simpler example of colored grid lines which doesn't require loading a
package is:
Plot[x^2, {x,0,1},
GridLines->{Table[{k, {Thickness[0.012], Hue[k/2]} }, {k,0.1, 1.0,
0.1}],
None}]
Arnold Seiken