各グラフのタイトルを、すべて自動的に生成される凡例 (key) 内に表示させ
る代わりに、表題や凡例を手動で配置することができます。これにより、例え
ば多重描画モード (multiplot) での各グラフ要素に対する表題を 1 箇所に集
約して作ることができるようになります。
以下はその一例:
set multiplot layout 3,2 columnsfirst
set style data boxes
plot $D using 0:6 lt 1 title at 0.75, 0.20
plot $D using 0:12 lt 2 title at 0.75, 0.17
plot $D using 0:13 lt 3 title at 0.75, 0.14
plot $D using 0:14 lt 4 title at 0.75, 0.11
set label 1 at screen 0.75, screen 0.22 "Custom combined key area"
plot $D using 0:($6+$12+$13+$14) with linespoints title "total"
unset multiplot
竹野茂治@新潟工科大学
2019-01-08