更改图例位置gnuplot

时间:2013-12-23 06:05:55

标签: plot gnuplot

我想更改图表右上角的图例位置,使其位于图表中每一行的旁边

我用过

 plot[0:100000][] 'ccatt.txt' with line title "CCA", 'easctt.txt' with line title "ESAC",'hqtt.txt' with line title "Holy Qur'an"

任何建议?

1 个答案:

答案 0 :(得分:0)

你不能自动完成。作为解决方法,您可以使用labels绘图样式,并将标题放在具有特定偏移的行的第一个点:

plot 'ccatt.txt' with line notitle, \
     '' using 1:2:('CCA') every ::0::0 with labels left offset char 0,-1 notitle,
     'easctt.txt' with line notitle,\
     '' using 1:2:('ESAC') every ::0::0 with labels left offset char 0,-1 notitle

every ::0::0选择标注CCA的第一个点,左对齐,减去一个字符高度的垂直偏移。