gnuplot 4.4 patchlevel 3
。set pm3d set grid set palette defined (-1 "blue", 0 "white", 1 "red") set notitle set ztics 0.10 set xlabel "Label 1" set ylabel "Label 2" set zlabel "Label 3" splot "data" using ($1/$2):3:($4+$5) with pm3d notitle pause -1 set term post enhanced color "Serif" 20 set output "graph.eps" replot
答案 0 :(得分:4)
您想要调整{offset <offset>}
选项,例如:
set xlabel "Label 1" offset 1,1,1
将xlabel相对于其原始位置在x,y和z轴的每一个中移动大约1个字符。
根据帮助页面,您可以指定first
,second
,graph
,screen
或character
(这是默认设置)之一用于偏移的坐标系:
set xlabel "Label 1" offset graph 1,1,1