11

在 gnuplot 中,我试图将键设置在几个绘图的特定位置,然后我只希望它位于屏幕的右下角。我试过了:

set key at -5, 5
plot x
set key bottom right
replot

但钥匙不会移动到右下角。如何让 gnuplot 忘记我之前设置的特定键位置?

4

1 回答 1

15

如果您使用它似乎只是一个问题set key at

我在它set key default之前添加了它set key bottom right

set key at -5, 5
plot x
set key default
set key bottom right
replot
于 2013-05-06T08:56:32.853 回答