在gnuplot中我试图将键设置在几个图的特定位置,然后我只想在屏幕的右下角。我试过了:
set key at -5, 5
plot x
set key bottom right
replot
但键不会移到右下角。如何让gnuplot忘记我之前设置了一个特定的密钥位置?
答案 0 :(得分:12)
如果您使用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