Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gnuplot, description distance to axis

How can I get a fixed distance in gnuplot from the border of my graph to the description? When I use

 set ylabel "{/Symbol s}[MPa]" font "Times Italic, 10"

The description is a bit too far away from the axis.

like image 667
YaY Avatar asked Feb 27 '13 14:02

YaY


1 Answers

Yes, there is the offset flag to the xlabel and ylabel commands:

set ylabel "foo" offset x,y

Type

help set xlabel

for all the axis label options.

like image 163
andyras Avatar answered Nov 04 '22 05:11

andyras