Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set font size of values numbers on the axis

Tags:

gnu

gnuplot

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.

like image 607
bb2 Avatar asked Mar 31 '13 18:03

bb2


People also ask

How do I change font size in Axis?

To change the text font for any chart element, such as a title or axis, right–click the element, and then click Font. When the Font box appears make the changes you want.

How do you change the font size on the axis value in Matlab?

Accepted Answer To change the font size, set the “FontSize” property for the axes. Since many plotting functions reset axes properties, including the font size, set the "FontSize" property after plotting.

How do I change font size in numbers?

Change text appearance next to the font name. Apply bold, italic, underline, or strikethrough: Tap any of the buttons below Font. next to Size to decrease or increase the font size, or tap the font size and enter a new value.

How do I change the font size of data labels in Excel?

Resize a data labelClick the data label and drag it to the size you want. Tip: You can set other size (Excel and PowerPoint) and alignment options in Size & Properties (Layout & Properties in Outlook or Word). Double-click the data label and then click Size & Properties.


1 Answers

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" 
like image 137
juliesls Avatar answered Sep 23 '22 15:09

juliesls