Path: news.mathworks.com!newsfeed-00.mathworks.com!solaris.cc.vt.edu!news.vt.edu!news.glorb.com!postnews.google.com!q3g2000pra.googlegroups.com!not-for-mail
From: Nathan <ngreco32@gmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: R2009a: Setting GridLines Color Different to Axis Color...
Date: Wed, 24 Jun 2009 15:27:58 -0700 (PDT)
Organization: http://groups.google.com
Lines: 21
Message-ID: <98cffd5e-6e2b-4353-9e1d-dfebbcd368d3@q3g2000pra.googlegroups.com>
References: <h1tnhe$ljl$1@fred.mathworks.com>
NNTP-Posting-Host: 198.206.219.33
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
X-Trace: posting.google.com 1245882478 18525 127.0.0.1 (24 Jun 2009 22:27:58 GMT)
X-Complaints-To: groups-abuse@google.com
NNTP-Posting-Date: Wed, 24 Jun 2009 22:27:58 +0000 (UTC)
Complaints-To: groups-abuse@google.com
Injection-Info: q3g2000pra.googlegroups.com; posting-host=198.206.219.33; 
	posting-account=_KeVcAoAAAB7j3xn35ujaQ0BoQhuzwJP
User-Agent: G2/1.0
X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.11) 
	Gecko/2009060215 Firefox/3.0.11,gzip(gfe),gzip(gfe)
X-HTTP-Via: 1.1 wwwproxy-son-ca-01.ca.sandia.gov:80 (squid/2.5.STABLE14)
Xref: news.mathworks.com comp.soft-sys.matlab:550457


On Jun 24, 10:25 am, "Andrey Kazak" <A...@nospam.ru> wrote:
> Greetings!
>
> I've read the bulletin:http://www.mathworks.com/support/solutions/data/1-1PAYMC.html?solutio...)
>
> and it states: "... This enhancement has been incorporated in Release 2008a (R2008a)."
> What is it?
>
> Could you help me to figure out the way to set GridLines Color different to Axis Color please?


Did you not read the whole bulletin?...
Try this.
c_axes = copyobj(gca,gcf);
set(c_axes, 'color', 'r', 'xcolor', 'y', 'xgrid', 'off', 'ycolor','b',
'ygrid','off');

-Nathan