PDA

View Full Version : Mathematica - Change graph font size


sugaku
Feb4-10, 08:02 PM
Good day to all,

I need help on how to change font size for numbers in x and y axis. For axes label I could change the font size using below command, but how about the scaling itself.

Plot[Sin[x],{x,0,100},AxesLabel->{Style["t",Italic,Large]}]

Thank you in advance.

Regards,
sugaku

Hepth
Feb4-10, 10:32 PM
Plot[x, {x, 0, 1}, TicksStyle -> Directive[15]]

the 15 is the font, it actually took a while to find this, ticks are not listed as an option of plot, but it is.

can also make other changes:

Plot[x, {x, 0, 1}, TicksStyle -> Directive[Red, Bold, 20, Italic]]