Skip to Main Content Skip to Search
Login
File Exchange
MATLAB Newsgroup
Link Exchange
  Blogs  
 Contest 
MathWorks.com

Thread Subject: setting axes color

Subject: setting axes color

From: Ashwini Deshpande

Date: 19 Jan, 2008 05:55:06

Message: 1 of 2

Dear all,

I m drawing a polar plot and want to set the figure color to
red and axes color to black, for that i m using following
commands,

figure;
polar(100,200,'*');
set(gcf,'Color','r');
set(gca,'Color','b');

In this the gcf command is working and gca is not working..
Is there any way to change the polar axes color to black.

The above commands are holds good for all the graphs which
can be drawn from plot command. But not for polar plot ..

Regards,
Ashwini


Subject: setting axes color

From: Volkan

Date: 20 Jan, 2008 01:13:02

Message: 2 of 2

"Ashwini Deshpande" <vd.ashwini@mathworks.com> wrote in
message <fms3bq$d93$1@fred.mathworks.com>...
> Dear all,
>
> I m drawing a polar plot and want to set the figure color to
> red and axes color to black, for that i m using following
> commands,
>
> figure;
> polar(100,200,'*');
> set(gcf,'Color','r');
> set(gca,'Color','b');
>
> In this the gcf command is working and gca is not working..
> Is there any way to change the polar axes color to black.
>
> The above commands are holds good for all the graphs which
> can be drawn from plot command. But not for polar plot ..
>
> Regards,
> Ashwini
>
>
Hi Ashwini,

polar.m draws a circular patch object on the axis using
Matlabs default axes color:

% --- from polar.m --- %
% plot background if necessary
    if ~ischar(get(cax,'color')),
       patch('xdata',xunit*rmax,'ydata',yunit*rmax, ...
             'edgecolor',tc,'facecolor',get(cax,'color'),...
             'handlevisibility','off','parent',cax);
    end

So even if you change the axis color, it is not visible
through the patch. Use the following code to change the
color of the patch object to the color of the axes:

polar(100,200,'*');
set(gcf,'Color','r');
set(gca,'Color','y');

set(0,'ShowHiddenHandles','on');
ch = get(gca,'Children');
chType = get(ch,'type');
isPatch = strcmp('patch',chType);
set(ch(isPatch),'facecolor',get(gca,'color'));
set(0,'ShowHiddenHandles','off');

--------
Volkan

Tags for this Thread

Everyone's Tags:

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

Tag Activity for This Thread
Tag Applied By Date/Time
polar Volkan 19 Jan, 2008 20:29:18
color Ashwini Deshpande 19 Jan, 2008 01:00:09
gcf Ashwini Deshpande 19 Jan, 2008 01:00:09
gca Ashwini Deshpande 19 Jan, 2008 01:00:09
rssFeed for this Thread

envelope graphic E-mail this page to a colleague

Public Submission Policy
NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Disclaimer prior to use.
Related Topics