我想更改图表右上角的图例位置,使其位于图表中每一行的旁边
我用过
plot[0:100000][] 'ccatt.txt' with line title "CCA", 'easctt.txt' with line title "ESAC",'hqtt.txt' with line title "Holy Qur'an"
任何建议?
答案 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
的第一个点,左对齐,减去一个字符高度的垂直偏移。