I want to change Font Size for xlabel, ylabel, axis size, legend font size a.k.a everything at once, is this possible? By default, font is Helvetic
xlabel
ylabel
If you want to change font size for all the text in a figure, you can use findall to find all text handles, after which it's easy:
findall
figureHandle = gcf; %# make all text in the figure to size 14 and bold set(findall(figureHandle,'type','text'),'fontSize',14,'fontWeight','bold')