33

How do I set the font size for the values on both the x and y-axis?

I've looked around and I've only found ways to change the xlabel's size and ylabel's size, but I want the actual numbers below the axis to be bigger.

Wouter J
  • 41,455
  • 15
  • 107
  • 112
bb2
  • 2,872
  • 7
  • 37
  • 45
  • Similar challenge has been in Matlab where I have found the PaperSize option the best way to get consistent fonts. Similar procedure can also work in Gnuplot so I opened a new thread about it here http://stackoverflow.com/q/29727851/54964 – Léo Léopold Hertz 준영 Apr 19 '15 at 09:04

2 Answers2

33

Small elaboration on bb2's answer, if you do not want to change the font face:

set xtics font ", 30"

And for tics on the yaxis:

set ytics font ", 30"

For both axis at the same time:

set tics font ", 30"
juliesls
  • 521
  • 4
  • 9
28

It was with:

set xtics font "Times-Roman, 30" 
bb2
  • 2,872
  • 7
  • 37
  • 45