Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的情节正在掩盖我在 gnuplot 中的密钥。我正在绘制的东西经常振荡,所以在我的情节中我无处可去而不干扰某些事情。我怎样才能给钥匙一个不透明的背景,这样里面的物品就不会被线条覆盖?
我的 gnuplot 版本通过以下方式支持不透明键:
set key opaque
尝试以下方法:
set key box opaque plot sin(x)
在这种情况下,另一种选择是将键移到绘图区域之外:
set key outside plot sin(x)
这样您就不会掩盖任何有价值的数据。