Prev: Simulink Solver Run Times
Next: How rotate a dscrete 2D curve around the Y axis for obtaining the surface?
From: mecmec on 18 Jun 2010 09:51 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 18 Jun 2010 10:00 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 18 Jun 2010 10:07 "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 18 Jun 2010 10:27
"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!!!! |