web-dev-qa-db-ja.com

gnuplotでチックを回転させて正当化する

Xticsを45度回転させたい。別の言葉で方向は/。問題は、チックがチャート領域内に表示されることです。チャートの外側に配置したいと思います。図を参照してください。

enter image description here

12
mahmood

配置(rightcenter、またはleftのいずれか)とoffsetx,yxticsのデフォルトのチック位置を基準にした座標)。

これは、3つの異なる可能性を示す例です。 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で):

enter image description here

17
Christoph