From: mecmec on
Hi!
I've been trying to change tick mark number fonts of a plotyy graph.
using

[AX,H1,H2] = plotyy(ang_t,ang_,temp_t,temp_,'plot');
h = legend('Angle','Temp','C: Y w/ heater',2);
set(h,'Interpreter','none','fontsize',16)
set(get(AX(1),'Ylabel'),'String','Angle [\circ]','fontsize',16,'fontweight','b')
set(get(AX(2),'Ylabel'),'String','Temp [\circC]','fontsize',16,'fontweight','b')
ax1 = gca;
set(ax1,'fontsize',16)

I was able to get only left hand y axis and x axis to change font sizes but not the right hand y-axis tick mark fonts (ylabel for both sides worked though)

Any help will be much appreciated
From: dpb on
mecmec wrote:
> Hi!
> I've been trying to change tick mark number fonts of a plotyy graph.
> using
> [AX,H1,H2] = plotyy(ang_t,ang_,temp_t,temp_,'plot');
....

> ax1 = gca;
> set(ax1,'fontsize',16)

....

That's current axis...

set(ax(1),'fontsize',12)
set(ax(2),'fontsize',8)


worked just fine here...

--
From: Steven Lord on

"mecmec " <brazilwax4u(a)yahoo.com> wrote in message
news:hvftk9$be3$1(a)fred.mathworks.com...
> Hi!
> I've been trying to change tick mark number fonts of a plotyy graph.
> using
> [AX,H1,H2] = plotyy(ang_t,ang_,temp_t,temp_,'plot');
> h = legend('Angle','Temp','C: Y w/ heater',2);
> set(h,'Interpreter','none','fontsize',16)
> set(get(AX(1),'Ylabel'),'String','Angle
> [\circ]','fontsize',16,'fontweight','b')
> set(get(AX(2),'Ylabel'),'String','Temp
> [\circC]','fontsize',16,'fontweight','b') ax1 = gca;

Don't use GCA here. PLOTYY creates _two_ axes and only one can be the
Current Axes that you Get with GCA. Instead, simply use the vector of
handles you already have:

set(AX, 'FontSize', 16)

--
Steve Lord
slord(a)mathworks.com
comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ
To contact Technical Support use the Contact Us link on
http://www.mathworks.com


From: mecmec on
"Steven Lord" <slord(a)mathworks.com> wrote in message <hvfuib$bvm$1(a)fred.mathworks.com>...
>
> "mecmec " <brazilwax4u(a)yahoo.com> wrote in message
> news:hvftk9$be3$1(a)fred.mathworks.com...
> > Hi!
> > I've been trying to change tick mark number fonts of a plotyy graph.
> > using
> > [AX,H1,H2] = plotyy(ang_t,ang_,temp_t,temp_,'plot');
> > h = legend('Angle','Temp','C: Y w/ heater',2);
> > set(h,'Interpreter','none','fontsize',16)
> > set(get(AX(1),'Ylabel'),'String','Angle
> > [\circ]','fontsize',16,'fontweight','b')
> > set(get(AX(2),'Ylabel'),'String','Temp
> > [\circC]','fontsize',16,'fontweight','b') ax1 = gca;
>
> Don't use GCA here. PLOTYY creates _two_ axes and only one can be the
> Current Axes that you Get with GCA. Instead, simply use the vector of
> handles you already have:
>
> set(AX, 'FontSize', 16)
>
> --
> Steve Lord
> slord(a)mathworks.com
> comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ
> To contact Technical Support use the Contact Us link on
> http://www.mathworks.com
>



THANK YOU ALL!!!!