我想将xtics旋转45度。换句话说,方向是/
。问题是图表区域内会出现抽搐,我想把它们放在图表之外。见图:
答案 0 :(得分:16)
您必须根据默认抽搐调整对齐(可以是right
,center
或left
)和offset
(x,y
坐标位置)xtics
。
这是一个例子,它展示了三种不同的可能性。必须手动调整offset
才能使其正确:
set xrange [0.5:3.5]
set bmargin 5
set multiplot layout 1,3
set xtics ('first' 1, 'second' 2, 'third' 3) rotate by 45 right
set title 'right aligned'
plot x
set xtics center offset 0,-1
set title 'centered'
replot
set xtics left offset 0,-2
set title 'left aligned'
replot
unset multiplot
这给出了(用4.6.4):